版权声明:本文为博主原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
本文链接:https://blog.csdn.net/you18131371836/article/details/53691044
收起
1.如果不想在xml文件中配置bean,我们可以给我们的类加上spring组件注解,只需再配置下spring的扫描器就可以实现bean的自动载入。
<!-- 注解注入 -->
<context:annotation-config></context:annotation-config>
<context:component-scan base-package="com.b505.common.service.impl" />
<context:component-scan base-package="com.b505.common.dao.ibatis" />
<context:component-scan base-package="com.b505.app.dao.ibatis" />
<context:component-scan base-package="com.b505.app.service" />
<context:component-scan base-package="com.b505.app.service.ibatis" />
需要注意的是:
在base-package指明一个包:
<context:component-scan base-package="com.b505"/>
表明com.b505包及其子包中,如果某个类的头上带有特定的注解
@Component,@Repository,@Service,@Controller,就会将这个对象作为Bean注入进spring容器。
2.下面是引用spring framework开发手册中的一段话“
Spring 2.5引入了更多典型化注解(stereotype annotations): @Component、@Service和 @Controller。@Component是所有受Spring管理组件的通用形式;而@Repository、@Service和 @Controller则是@Component的细化,用来表示更具体的用例(例如,分别对应了持久化层、服务层和表现层)。也就是说,你能用@Component来注解你的组件类,但如果用@Repository、@Service 或@Controller来注解它们,你的类也许能更好地被工具处理,或与切面进行关联。例如,这些典型化注解可以成为理想的切入点目标。
3.有了<context:component-scan>,另一个<context:annotation-config/>标签就可以移除掉,因为已经被包含进去了。
<context:component-scan>提供两个子标签:<context:include-filter>和<context:exclude-filter>各代表引入和排除的过滤。
代码如下:
<context:component-scan base-package="com.b505">
<context:exclude-filter type="annotation" expression="org.springframework.stereotype.Controller"/>
</context:component-scan>
<!-- 开启controller注解支持 -->
<!-- 注:如果base-package=com.b505 则注解事务不起作用 TODO 读源码 -->
<context:component-scan base-package="com.b505.web">
<context:include-filter type="annotation" expression="org.springframework.stereotype.Controller"/>
————————————————
版权声明:本文为CSDN博主「you18131371836」的原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/you18131371836/article/details/53691044
来源:oschina
链接:https://my.oschina.net/u/4434424/blog/3214471