Flask接口签名sign原理与实例代码浅析
265
2023-03-04
Spring自动装配与扫描注解代码详解
1 javabean的自动装配
自动注入,减少xml文件的配置信息。
xmlns:p="http://springframework.org/schema/p" xmlns:xsi="http://w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://springframework.org/schema/beans http://springframework.org/schema/beans/spring-beans-4.1.xsd"> autowire="byType"> autowire="byType">
xmlns:p="http://springframework.org/schema/p" xmlns:xsi="http://w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://springframework.org/schema/beans
http://springframework.org/schema/beans/spring-beans-4.1.xsd">
autowire="byType">
autowire="byType">
autowire="byType">
autowire="byType">
2 spring的扫描注解
使用spring的扫描注解,重构三层结构。配置更少的内容
在applicationContext.xml文件中,导入扫描的xsd
l 开启注解扫描
xmlns:context="ohSgRBEZFkhttp://springframework.org/schema/context" [ A1 ] xmlns:p="http://springframework.org/schema/p" xmlns:xsi="http://w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://springframework.org/schema/beans http://springframework.org/schema/beans/spring-beans-4.1.xsd http://springframework.org/schema/context http://springframework.org/schema/context/spring-context-4.1.xsd "> base-package="org.guangsoft.dao.impl, org.guangsoft.service.impl,org.guangsoft.action">
xmlns:context="ohSgRBEZFkhttp://springframework.org/schema/context" [ A1 ]
xmlns:p="http://springframework.org/schema/p" xmlns:xsi="http://w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://springframework.org/schema/beans
http://springframework.org/schema/beans/spring-beans-4.1.xsd
http://springframework.org/schema/context
http://springframework.org/schema/context/spring-context-4.1.xsd
">
base-package="org.guangsoft.dao.impl, org.guangsoft.service.impl,org.guangsoft.action">
base-package="org.guangsoft.dao.impl,
org.guangsoft.service.impl,org.guangsoft.action">
注解进行总结
类注解:
@controller(给web层的注解)
@service(给serivce层加的注解)
@repository(给dao层加的注解)
@component(给java类加注解,老版本spring只有这http://一个注解)
以上三个注解:将对应的类纳入spring容器中对应的
Id:类名第一个字母小写(默认)
如果需要自己指定id需要给三个注解加入String类的参数
@controller(“uAction”)id=uAction
@resouce(给需要依赖的对象属性加的注解)
通过自动装配完成需要依赖属性的注入。
参数:name:按照byName进行自动装配
参数:type:按照byType进行自动装配
注解执行过程
1,加载spring的容器
2,扫描spring容器中指定包
3,扫描指定的包中,加了三个类注解的类,然后将该类纳入spring容器
4,
5,扫描类中被加入@resource注解的属性,然后按照自动装配的方式进行关系建立
6,Autowrie
总结
以上就是本文关于Spring自动装配与扫描注解代码详解的全部内容,希望对大家有所帮助。感兴趣的朋友可以继续参阅本站:
基于注解的组件扫描详解
spring配置扫描多个包问题解析
如有不足之处,欢迎留言指出。感谢朋友们对本站的支持!
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~