Spring中用注解创建bean实例
Posted Zong
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring中用注解创建bean实例相关的知识,希望对你有一定的参考价值。
Spring中提供以下注解来创建bean实例:
1)@Component
2)@Service
3)@Controller
4)@Repository
以上4个注解的功能是一样的,都可以用来创建bean实例
步骤:
1)引入spring-aop依赖包
2)开启注解扫描,开启后才会去扫描哪个目录下使用了注解
<context:component-scan base-package="com.zong.spring,com.zong.bean"></context:component-scan>
使用过滤器,指定扫描文件
<context:component-scan base-package="com.zong.spring,com.zong.bean" use-default-filters="false">
//只扫描Controller注解
<context:include-filter type="annotation" expression="org.springframework.stereotype.Controller"/>
//不扫描Controller注解
<context:exclude-filter type="annotation" expression="org.springframework.stereotype.Controller"/>
</context:component-scan>
3)在类上面添加注解
@Component(value="userService")
public class UserService{
}
value中的值等于bean.xml文件中的id属性,默认是类名且首字母小写
以上是关于Spring中用注解创建bean实例的主要内容,如果未能解决你的问题,请参考以下文章
coding++:spring注解@lazy,bean懒加载
在 Spring java 配置中调用 @Bean 注解的方法
Spring中Bean初始化及销毁方法(InitializingBean接口DisposableBean接口@PostConstruct注解@PreDestroy注解以及init-method(代码片