1. 程式人生 > >spring註解大全啟用

spring註解大全啟用

[email protected]註解(不推薦使用,建議使用@Resource)

@Autowired可以對成員變數、方法和建構函式進行標註,來完成自動裝配的工作。@Autowired的標註位置不同,它們都會在Spring在初始化這個bean時,自動裝配這個屬性。要使@Autowired能夠工作,還需要在配置檔案中加入以下

Xml程式碼

  1. <beanclass="org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor"/>

2. @Qualifier註解

@Autowired是根據型別進行自動裝配的。例如,如果當Spring上下文中存在不止一個UserDao型別的bean時,就會丟擲BeanCreationException異常;如果Spring上下文中不存在UserDao型別的bean,也會丟擲BeanCreationException異常。我們可以使用@Qualifier配合@Autowired來解決這些問題。如下:

1). 可能存在多個UserDao例項

Java程式碼

  1. @Autowired
  2. @Qualifier("userServiceImpl")         
  3. public IUserService userService;  

或者

Java程式碼

  1. @Autowired
  2. publicvoid setUserDao(@Qualifier("userDao") UserDao userDao) {        
  3. this.userDao = userDao;        

這樣,Spring會找到id為userServiceImpl和userDao的bean進行裝配。

2). 可能不存在UserDao例項

Java程式碼

  1. @Autowired(required = false)        
  2. public IUserService userService;    

3. @Resource註解

JSR-250標準註解,推薦使用它來代替Spring專有的@Autowired註解。@Resource的作用相當於@Autowired,只不過@Autowired按byType自動注入,而@Resource預設按byName自動注入罷了。@Resource有兩個屬性是比較重要的,分別是name和type,Spring將 @Resource註解的name屬性解析為bean的名字,而type屬性則解析為bean的型別。所以如果使用name屬性,則使用byName的自動注入策略,而使用type屬性時則使用byType自動注入策略。如果既不指定name也不指定type屬性,這時將通過反射機制使用byName自動注入策略。要使@Autowired能夠工作,還需要在配置檔案中加入以下:

Xml程式碼

  1. <beanclass="org.springframework.context.annotation.CommonAnnotationBeanPostProcessor"/>

@Resource裝配順序:

a.如果同時指定了name和type,則從Spring上下文中找到唯一匹配的bean進行裝配,找不到則丟擲異常

b.如果指定了name,則從上下文中查詢名稱(id)匹配的bean進行裝配,找不到則丟擲異常

c.如果指定了type,則從上下文中找到型別匹配的唯一bean進行裝配,找不到或者找到多個,都會丟擲異常

d.如果既沒有指定name,又沒有指定type,則自動按照byName方式進行裝配(見2);如果沒有匹配,則回退為一個原始型別(UserDao)進行匹配,如果匹配則自動裝配;

4. @PostConstruct(JSR-250)註解

在方法上加上註解@PostConstruct,這個方法就會在Bean初始化之後被Spring容器執行(注:Bean初始化包括,例項化Bean,並裝配Bean的屬性(依賴注入))。它的一個典型的應用場景是,當你需要往Bean裡注入一個其父類中定義的屬性,而你又無法複寫父類的屬性或屬性的setter方法時,如:

Java程式碼

  1. publicclass UserDaoImpl extends HibernateDaoSupport implements UserDao {        
  2. private SessionFactory mySessionFacotry;        
  3. @Resource
  4. publicvoid setMySessionFacotry(SessionFactory sessionFacotry)     
  5.     {        
  6. this.mySessionFacotry = sessionFacotry;        
  7.     }        
  8. @PostConstruct
  9. publicvoid injectSessionFactory()     
  10.     {        
  11. super.setSessionFactory(mySessionFacotry);        
  12.     }     
  13. }  

這裡通過@PostConstruct,為UserDaoImpl的父類裡定義的一個sessionFactory私有屬性,注入了我們自己定義的 sessionFactory(父類的setSessionFactory方法為final,不可複寫),之後我們就可以通過呼叫 super.getSessionFactory()來訪問該屬性了。

5. @PreDestroy(JSR-250)註解

在方法上加上註解@PreDestroy,這個方法就會在Bean初始化之後被Spring容器執行。其用法同@PostConstruct。和@PostConstruct 區別在於:@PostConstruct註釋的方法將在類例項化後呼叫,而標註了 @PreDestroy 的方法將在類銷燬之前呼叫。

6. @Component註解 (不推薦使用)

只需要在對應的類上加上一個@Component註解,就將該類定義為一個Bean了。Spring還提供了更加細化的註解形式:@Repository、@Service、@Controller,它們分別對應儲存層Bean,業務層Bean,和展示層Bean。目前版本(2.5)中,這些註解與@Component的語義是一樣的,完全通用,在Spring以後的版本中可能會給它們追加更多的語義。所以,我們推薦使用@Repository、@Service、@Controller來替代@Component。

[email protected]註解

在使用XML定義Bean時,我們可能還需要通過bean的scope屬性來定義一個Bean的作用範圍,我們同樣可以通過@Scope註解來完成這項工作:

Java程式碼

  1. @Scope("session")        
  2. @Component()        
  3. publicclass UserSessionBean implements Serializable{      
  4.  ... ...     
  5. }  

二、配置啟用註解(注意以下配置需要使用spring2.5的標頭檔案,在spring3.0中不適用)

1.使用簡化配置

Spring2.1添加了一個新的context的Schema名稱空間,該名稱空間對註釋驅動、屬性檔案引入、載入期織入等功能提供了便捷的配置。我們知道註釋本身是不會做任何事情的,它僅提供元資料資訊。要使元資料資訊真正起作用,必須讓負責處理這些元資料的處理器工作起來。

AutowiredAnnotationBeanPostProcessor和CommonAnnotationBeanPostProcessor就是處理這些註釋元資料的處理器。但是直接在Spring配置檔案中定義這些Bean顯得比較笨拙。Spring為我們提供了一種方便的註冊這些BeanPostProcessor的方式,這就是,以下是spring的配置。

Xml程式碼

  1. <beansxmlns="http://www.springframework.org/schema/beans"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xmlns:context="http://www.springframework.org/schema/context"
  2. xsi:schemaLocation="http://www.springframework.org/schema/beans        
  3.     http://www.springframework.org/schema/beans/spring-beans-2.5.xsd        
  4.     http://www.springframework.org/schema/context        
  5.     http://www.springframework.org/schema/context/spring-context-2.5.xsd">
  6. <context:annotation-config/>
  7. beans>

將隱式地向Spring容器註冊了

AutowiredAnnotationBeanPostProcessor 、

CommonAnnotationBeanPostProcessor 、

PersistenceAnnotationBeanPostProcessor

RequiredAnnotationBeanPostProcessor

這4個BeanPostProcessor。

2.使用讓Bean定義註解工作起來

Xml程式碼

  1. <beansxmlns="http://www.springframework.org/schema/beans"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xmlns:context="http://www.springframework.org/schema/context"
  2. xsi:schemaLocation="http://www.springframework.org/schema/beans        
  3.     http://www.springframework.org/schema/beans/spring-beans-2.5.xsd        
  4.     http://www.springframework.org/schema/context        
  5.     http://www.springframework.org/schema/context/spring-context-2.5.xsd">
  6. <context:component-scanbase-package="com.kedacom.ksoa"/>
  7. beans>

這裡,所有通過元素定義Bean的配置內容已經被移除,僅需要新增一行配置就解決所有問題了——Spring XML配置檔案得到了極致的簡化(當然配置元資料還是需要的,只不過以註釋形式存在罷了)。的base-package屬性指定了需要掃描的類包,類包及其遞迴子包中所有的類都會被處理。

還允許定義過濾器將基包下的某些類納入或排除。Spring支援以下4種類型的過濾方式:

過濾器型別 | 表示式範例 | 說明

註解 | org.example.SomeAnnotation | 將所有使用SomeAnnotation註解的類過濾出來

類名指定 | org.example.SomeClass | 過濾指定的類

正則表示式 | com\.kedacom\.spring\.annotation\.web\..* | 通過正則表示式過濾一些類

AspectJ表示式 | org.example..*Service+ | 通過AspectJ表示式過濾一些類

以正則表示式為例,我列舉一個應用例項:

Xml程式碼

  1. <context:component-scanbase-package="com.casheen.spring.annotation">
  2. <context:exclude-filtertype="regex"expression="com\.casheen\.spring\.annotation\.web\..*"/>
  3. context:component-scan>

 值得注意的是配置項不但啟用了對類包進行掃描以實施註釋驅動Bean定義的功能,同時還啟用了註釋驅動自動注入的功能(即還隱式地在內部註冊了AutowiredAnnotationBeanPostProcessor和CommonAnnotationBeanPostProcessor),因此當使用後,就可以將移除了。

3. 
是不支援spring的@Transcation和EJB的Spring's @Transactional or EJB3's @TransactionAttribute annotation。用此配置可以達到目的。

4. 使用@Scope來定義Bean的作用範圍

在使用XML定義Bean時,我們可能還需要通過bean的scope屬性來定義一個Bean的作用範圍,我們同樣可以通過@Scope註解來完成這項工作:

Java程式碼

  1. @Scope("session")           
  2. @Component()            
  3. publicclass UserSessionBean implements Serializable {            
  4.     ...           
  5. }  

相關推薦

spring註解大全啟用

[email protected]註解(不推薦使用,建議使用@Resource)@Autowired可以對成員變數、方法和建構函式進行標註,來完成自動裝配的工作。@Autowired的標註位置不同,它們都會在Spring在初始化這個bean時,自動裝配這個屬性。要使@Autowired能夠工作,還需

spring註解大全

活動 進行 web資源 oot truct fig loader nim transacti 這裏匯總一下spring的所有註解,並說明其用途。 如下表: 註解解釋 @Controller 組合註解(組合了@Component註解),應用在MVC層(控制層)

spring註解大全解析 spring springboot註解

今天整理了一下spring常用到的註解: 希望可以幫到你們喲! @Service用於標註業務層元件 @Controller用於標註控制層元件(如struts中的action) @Repository

Spring 註解大全

. JMX @ManagedResource <context:mbean-export/> org.springframework.jmx.export.annotation value, objectName description, currencyTimeLimit, log, log

8. Spring 註解 大全

Spring 註解 -------------------------------------------------------------------------------------------- 常用: 1. bean : 開啟 <context:a

spring boot 註解大全

生成策略 sequence urn basic in-memory 任務 轉發 col tom [springBoot系列]--springBoot註解大全 一、註解(annotations)列表 @SpringBootApplication:包含了@ComponentS

Spring中使用註解啟用<context:component-scan/>

方式 log one tar ati out 文件 ext tail 在spring中使用註解方式時需要在spring配置文件中配置組件掃描器:http://blog.csdn.net/j080624/article/details/56277315 <context

spring中的註解大全和應用說明

來源:http://t.cn/RFBJugV @Controller @RestController: @Service @Autowired @RequestMapping @RequestParam @

spring mvc註解大全

1、@Controller 在SpringMVC 中,控制器Controller 負責處理由DispatcherServlet 分發的請求,它把使用者請求的資料經過業務處理層處理之後封裝成一個Model ,然後再把該Model 返回給對應的Vie

spring,springboot,spring cloud註解大全

springboot註解列表 @SpringBootApplication:是一個複合註解(配置在啟動類中),包括三個註解         @Configuration:標註當前類是配置類,被註解的類內部包含一個或多個被@Bean註解的方法,這些方法將會被掃描,並用於構建

JavaWeb-Spring註解大全與詳解

可以通過該型別 status 物件顯式結束表單的處理,這相當於觸發 session 清除其中的通過@SessionAttributes 定義的屬性  請求處理方法返回值的可選型別 • void 此時邏輯檢視名由請求處理方法對應的 URL 確定,如以下的方法: @RequestMapping("/welc

spring註解1

XML itcast autowire spa cast encoding ans 測試 目錄 1. src下目錄結構如下: 2.測試類 public class App { // 創建容器對象 private ApplicationContext ac = ne

spring註解使用介紹

print sqlite 測試 www oca oid pat 不知道 text 註解註入顧名思義就是通過註解來實現註入,Spring和註入相關的常見註解有Autowired、Resource、Qualifier、Service、Controller、Repository、

Spring註解註入

path qualifier tpms @value scope 會話 數據類型 rep person 在使用註解前必須對Spring容器進行頭文件導入和配置上下文環境。 1 <?xml version="1.0" encoding="UTF-8"?>

Spring註解詳細

組件 ostc use stc 註入 pac 管理 類名 初始 [email protected]/* */ 控制器(註入服務) [email protected]/* */ 服務(註入dao) [email protected]/* *

JAVAEE——SSH項目實戰06:統計信息管理、Spring註解開發和EasyUI

disabled path -a ted efault pen ret 發送 tran 作者: kent鵬 轉載請註明出處: http://www.cnblogs.com/xieyupeng/p/7190925.html 一、統計信息管理    二、Spring

spring註解使用

spring一、使用註解前,在配置文件中,引入context命名空間xmlns:context=http://www.springframework.org/schema/context xsi:schemaLocation="http://www.springframework.org/schema/bea

spring註解和增強

value pac bsp spring註解 www. framework spring val 註解 1.添加xsd約束 xmlns:context="http://www.springframework.org/schema/context" http://w

Spring註解Annotion——2017.08.27

pos cnblogs 我們 XML brush not 作用 ice ann 1 Spring中註解起的作用 前提是要在xml配置文件中 <context:compoent-scan base-package="cn.itcast"> &

[springBoot系列]--springBoot註解大全

歸類 onetoone rod gif 示例 nts 描述符 控制 負責 一、註解(annotations)列表 @SpringBootApplication:包含了@ComponentScan、@Configuration和@EnableAutoConfigurati