spring@Component注解原理是什么-创新互联

本篇内容主要讲解“spring @Component注解原理是什么”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“spring @Component注解原理是什么”吧!

创新互联建站主营仪陇网站建设的网络公司,主营网站建设方案,重庆APP开发公司,仪陇h5小程序定制开发搭建,仪陇网站营销推广欢迎仪陇等地区企业咨询

1.@controller 控制器(注入服务)

2.@service 业务(注入dao)

3.@repository dao(实现dao访问)

4.@component (把普通pojo实例化到spring容器中,相当于配置文件中的

5.@Component,@Service,@Controller,@Repository注解的类,并把这些类纳入进spring容器中管理。

@Servicepublic class UserServiceImpl implements UserService {} @Repositorypublic class UserDaoImpl implements UserDao {}

6.

这样就可以使用@ Resource 、@ PostConstruct、@ PreDestroy、@PersistenceContext、@Autowired、@Required等注解了,就可以实现自动注入

7.

Spring给我们提供了context:annotation-config 的简化的配置方式,自动帮助你完成声明,并且还自动搜索@Component , @Controller , @Service , @Repository等标注的类。

context:component-scan除了具有context:annotation-config的功能之外,context:component-scan还可以在指定的package下扫描以及注册javabean 。还具有自动将带有@component,@service,@Repository等注解的对象注册到spring容器中的功能。

因此当使用 context:component-scan 后,就可以将 context:annotation-config移除。

8.spring ioc控制反转

<--spring容器控制对象资源属性-->  --私有成员变量

<--spring依赖注入对象-->@Autowired@Qualifier("batchNo")private IdGenerator idGenerator;

相当于使用@Component("")

到此,相信大家对“spring @Component注解原理是什么”有了更深的了解,不妨来实际操作一番吧!这里是创新互联建站,更多相关内容可以进入相关频道进行查询,关注我们,继续学习!


本文名称:spring@Component注解原理是什么-创新互联
路径分享:http://pwwzsj.com/article/cohcdo.html