您好,登錄后才能下訂單哦!
本篇內容主要講解“spring @Component注解原理是什么”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“spring @Component注解原理是什么”吧!
1.@controller 控制器(注入服務)
2.@service 業務(注入dao)
3.@repository dao(實現dao訪問)
4.@component (把普通pojo實例化到spring容器中,相當于配置文件中的<bean id="" class=""/>)
5.@Component,@Service,@Controller,@Repository注解的類,并把這些類納入進spring容器中管理。
@Servicepublic class UserServiceImpl implements UserService {} @Repositorypublic class UserDaoImpl implements UserDao {}
6.<context:annotation-config />
這樣就可以使用@ Resource 、@ PostConstruct、@ PreDestroy、@PersistenceContext、@Autowired、@Required等注解了,就可以實現自動注入
7.<context:component-scan base-package="com.**.impl"/>
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容器控制對象資源屬性--><bean id="batchNo"class="com.common.utils.IdGenerator"><constructor-arg name="datacenterId"value="${server.datacenterId}"></constructor-arg> --私有成員變量<constructor-arg name="workerId"value="${server.workerId}"></constructor-arg></bean>
<--spring依賴注入對象-->@Autowired@Qualifier("batchNo")private IdGenerator idGenerator;
相當于使用@Component("")
到此,相信大家對“spring @Component注解原理是什么”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。