您好,登錄后才能下訂單哦!
本篇文章為大家展示了如何使用注解開發spring,內容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。
在Spring4
之后,要使用注解開發,必須要保證aop
的包導入了。
使用注解需要導入context
約束,增加注解的支持。
<?xml version="1.0" encoding="utf-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context https://www.springframework.org/schema/context/spring-context.xsd"> <!--指定要掃描的包,這個包下的注解會生效--> <context:component-scan base-package="com.chen.project"/> <context:annotation-config/> </beans>
1.bean
@Component
:組件,放 在類上,說明這個類被Spring
管理了,就是bean
。
2.屬性如何注入
import org.springframework.beans.factory.annotation.Value; import org.springframework.stereotype.Component; //等價于<bean id="user" class="com.chen.dao.User"></bean> @Component public class User { public String name; //等價于<property name="name" value="lan"></property> @Value("LAN") public void setName(String name) { this.name = name; } }
3.衍生的注解
@Component
有幾個衍生注解,我們在web
開發中,會按照mvc
三層架構分層!
dao【@Repository
】
service 【@Service
】
controller【@Controller
】
這四個注解功能都是一樣的,都代表將某個類注冊到Spring
中,裝配Bean
。
4.自動裝配置
-@Autowired
通過byType
的方式實現。
@Resource
默認通過byName
的方式實現。
5.作用域
@Scope("singleton") public class User { }
6.小結
xml
更加萬能,適用于任何場合,維護簡單方便
注解不是自己的類使用不了,維護相對復雜!
xml
于注解最佳實踐
xml
用來管理bean
注解只負責完成屬性的注入
我們在使用的過程中,只需要注意一個問題,必須讓注解生效,就需要開啟注解的支持
<!--指定要掃描的包,這個包下的注解會生效--> <context:component-scan base-package="com.chen.project"/> <context:annotation-config/>
上述內容就是如何使用注解開發spring,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。