久久国产成人av_抖音国产毛片_a片网站免费观看_A片无码播放手机在线观看,色五月在线观看,亚洲精品m在线观看,女人自慰的免费网址,悠悠在线观看精品视频,一级日本片免费的,亚洲精品久,国产精品成人久久久久久久

分享

主題:Spring注解入門

 狼志凌云 2011-10-08

1. 使用Spring注解來注入屬性
1.1. 使用注解以前我們是怎樣注入屬性的
類的實(shí)現(xiàn):

Java代碼 復(fù)制代碼 收藏代碼
  1. public class UserManagerImpl implements UserManager {   
  2.     private UserDao userDao;   
  3.     public void setUserDao(UserDao userDao) {   
  4.         this.userDao = userDao;   
  5.     }   
  6.     ...   
  7. }  


配置文件:

Java代碼 復(fù)制代碼 收藏代碼
  1. <bean id="userManagerImpl" class="com.kedacom.spring.annotation.service.UserManagerImpl">   
  2.     <property name="userDao" ref="userDao" />   
  3. </bean>   
  4. <bean id="userDao" class="com.kedacom.spring.annotation.persistence.UserDaoImpl">   
  5.     <property name="sessionFactory" ref="mySessionFactory" />   
  6. </bean>  



1.2. 引入@Autowired注解(不推薦使用,,建議使用@Resource)
類的實(shí)現(xiàn)(對(duì)成員變量進(jìn)行標(biāo)注)

Java代碼 復(fù)制代碼 收藏代碼
  1. public class UserManagerImpl implements UserManager {   
  2.     @Autowired  
  3.     private UserDao userDao;   
  4.     ...   
  5. }  


或者(對(duì)方法進(jìn)行標(biāo)注)

Java代碼 復(fù)制代碼 收藏代碼
  1. public class UserManagerImpl implements UserManager {   
  2.     private UserDao userDao;   
  3.     @Autowired  
  4.     public void setUserDao(UserDao userDao) {   
  5.         this.userDao = userDao;   
  6.     }   
  7.     ...   
  8. }  


配置文件

Java代碼 復(fù)制代碼 收藏代碼
  1. <bean id="userManagerImpl" class="com.kedacom.spring.annotation.service.UserManagerImpl" />   
  2. <bean id="userDao" class="com.kedacom.spring.annotation.persistence.UserDaoImpl">   
  3.     <property name="sessionFactory" ref="mySessionFactory" />   
  4. </bean>  


@Autowired可以對(duì)成員變量,、方法和構(gòu)造函數(shù)進(jìn)行標(biāo)注,來完成自動(dòng)裝配的工作,。以上兩種不同實(shí)現(xiàn)方式中,@Autowired的標(biāo)注位置不同,,它們都會(huì)在Spring在初始化userManagerImpl這個(gè)bean時(shí),,自動(dòng)裝配userDao這個(gè)屬性,區(qū)別是:第一種實(shí)現(xiàn)中,,Spring會(huì)直接將UserDao類型的唯一一個(gè)bean賦值給userDao這個(gè)成員變量,;第二種實(shí)現(xiàn)中,Spring會(huì)調(diào)用setUserDao方法來將UserDao類型的唯一一個(gè)bean裝配到userDao這個(gè)屬性,。

1.3. 讓@Autowired工作起來
要使@Autowired能夠工作,,還需要在配置文件中加入以下代碼

Java代碼 復(fù)制代碼 收藏代碼
  1. <bean class="org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor" />  



1.4. @Qualifier
@Autowired是根據(jù)類型進(jìn)行自動(dòng)裝配的。在上面的例子中,,如果當(dāng)Spring上下文中存在不止一個(gè)UserDao類型的bean時(shí),,就會(huì)拋出BeanCreationException異常;如果Spring上下文中不存在UserDao類型的bean,,也會(huì)拋出BeanCreationException異常,。我們可以使用@Qualifier配合@Autowired來解決這些問題。
1. 可能存在多個(gè)UserDao實(shí)例

Java代碼 復(fù)制代碼 收藏代碼
  1. @Autowired  
  2. public void setUserDao(@Qualifier("userDao") UserDao userDao) {   
  3.     this.userDao = userDao;   
  4. }  


這樣,,Spring會(huì)找到id為userDao的bean進(jìn)行裝配,。
2. 可能不存在UserDao實(shí)例

Java代碼 復(fù)制代碼 收藏代碼
  1. @Autowired(required = false)   
  2. public void setUserDao(UserDao userDao) {   
  3.     this.userDao = userDao;   
  4. }  



1.5. @Resource(JSR-250標(biāo)準(zhǔn)注解,推薦使用它來代替Spring專有的@Autowired注解)
Spring 不但支持自己定義的@Autowired注解,,還支持幾個(gè)由JSR-250規(guī)范定義的注解,,它們分別是@Resource、@PostConstruct以及@PreDestroy,。
@Resource的作用相當(dāng)于@Autowired,,只不過@Autowired按byType自動(dòng)注入,而@Resource默認(rèn)按byName自動(dòng)注入罷了。@Resource有兩個(gè)屬性是比較重要的,,分別是name和type,,Spring將@Resource注解的name屬性解析為bean的名字,而type屬性則解析為bean的類型,。所以如果使用name屬性,,則使用byName的自動(dòng)注入策略,而使用type屬性時(shí)則使用byType自動(dòng)注入策略,。如果既不指定name也不指定type屬性,,這時(shí)將通過反射機(jī)制使用byName自動(dòng)注入策略。
@Resource裝配順序

  1. 如果同時(shí)指定了name和type,,則從Spring上下文中找到唯一匹配的bean進(jìn)行裝配,,找不到則拋出異常
  2. 如果指定了name,則從上下文中查找名稱(id)匹配的bean進(jìn)行裝配,,找不到則拋出異常
  3. 如果指定了type,,則從上下文中找到類型匹配的唯一bean進(jìn)行裝配,找不到或者找到多個(gè),,都會(huì)拋出異常
  4. 如果既沒有指定name,,又沒有指定type,則自動(dòng)按照byName方式進(jìn)行裝配(見2),;如果沒有匹配,,則回退為一個(gè)原始類型(UserDao)進(jìn)行匹配,如果匹配則自動(dòng)裝配,;



1.6. @PostConstruct(JSR-250)
在方法上加上注解@PostConstruct,,這個(gè)方法就會(huì)在Bean初始化之后被Spring容器執(zhí)行(注:Bean初始化包括,實(shí)例化Bean,,并裝配Bean的屬性(依賴注入)),。
它的一個(gè)典型的應(yīng)用場(chǎng)景是,當(dāng)你需要往Bean里注入一個(gè)其父類中定義的屬性,,而你又無法復(fù)寫父類的屬性或?qū)傩缘膕etter方法時(shí),,如:

Java代碼 復(fù)制代碼 收藏代碼
  1. public class UserDaoImpl extends HibernateDaoSupport implements UserDao {   
  2.     private SessionFactory mySessionFacotry;   
  3.     @Resource  
  4.     public void setMySessionFacotry(SessionFactory sessionFacotry) {   
  5.         this.mySessionFacotry = sessionFacotry;   
  6.     }   
  7.     @PostConstruct  
  8.     public void injectSessionFactory() {   
  9.         super.setSessionFactory(mySessionFacotry);   
  10.     }   
  11.     ...   
  12. }  


這里通過@PostConstruct,為UserDaoImpl的父類里定義的一個(gè)sessionFactory私有屬性,,注入了我們自己定義的sessionFactory(父類的setSessionFactory方法為final,,不可復(fù)寫),之后我們就可以通過調(diào)用super.getSessionFactory()來訪問該屬性了,。

1.7. @PreDestroy(JSR-250)
在方法上加上注解@PreDestroy,,這個(gè)方法就會(huì)在Bean初始化之后被Spring容器執(zhí)行。由于我們當(dāng)前還沒有需要用到它的場(chǎng)景,,這里不不去演示,。其用法同@PostConstruct,。

1.8. 使用<context:annotation-config />簡(jiǎn)化配置
Spring2.1添加了一個(gè)新的context的Schema命名空間,該命名空間對(duì)注釋驅(qū)動(dòng),、屬性文件引入,、加載期織入等功能提供了便捷的配置。我們知道注釋本身是不會(huì)做任何事情的,,它僅提供元數(shù)據(jù)信息,。要使元數(shù)據(jù)信息真正起作用,必須讓負(fù)責(zé)處理這些元數(shù)據(jù)的處理器工作起來,。
AutowiredAnnotationBeanPostProcessor和CommonAnnotationBeanPostProcessor就是處理這些注釋元數(shù)據(jù)的處理器,。但是直接在Spring配置文件中定義這些Bean顯得比較笨拙。Spring為我們提供了一種方便的注冊(cè)這些BeanPostProcessor的方式,,這就是<context:annotation-config />:

Java代碼 復(fù)制代碼 收藏代碼
  1. <beans xmlns="http://www./schema/beans" xmlns:xsi="http://www./2001/XMLSchema-instance" xmlns:context="http://www./schema/context"  
  2.     xsi:schemaLocation="http://www./schema/beans   
  3.     http://www./schema/beans/spring-beans-2.5.xsd   
  4.     http://www./schema/context   
  5.     http://www./schema/context/spring-context-2.5.xsd">   
  6.     <context:annotation-config />   
  7. </beans>  


<context:annotationconfig />將隱式地向Spring容器注冊(cè)AutowiredAnnotationBeanPostProcessor,、CommonAnnotationBeanPostProcessor,、 PersistenceAnnotationBeanPostProcessor以及RequiredAnnotationBeanPostProcessor這4個(gè)BeanPostProcessor,。

2. 使用Spring注解完成Bean的定義
以上我們介紹了通過@Autowired或@Resource來實(shí)現(xiàn)在Bean中自動(dòng)注入的功能,下面我們將介紹如何注解Bean,,從而從XML配置文件中完全移除Bean定義的配置,。

2.1. @Component(不推薦使用)、@Repository,、@Service,、@Controller
只需要在對(duì)應(yīng)的類上加上一個(gè)@Component注解,就將該類定義為一個(gè)Bean了:

Java代碼 復(fù)制代碼 收藏代碼
  1. @Component  
  2. public class UserDaoImpl extends HibernateDaoSupport implements UserDao {   
  3.     ...   
  4. }  


使用@Component注解定義的Bean,,默認(rèn)的名稱(id)是小寫開頭的非限定類名,。如這里定義的Bean名稱就是userDaoImpl。你也可以指定Bean的名稱:
@Component("userDao")
@Component是所有受Spring管理組件的通用形式,,Spring還提供了更加細(xì)化的注解形式:@Repository,、@Service、@Controller,,它們分別對(duì)應(yīng)存儲(chǔ)層Bean,,業(yè)務(wù)層Bean,和控制層Bean,。目前版本(2.5)中,,這些注解與@Component的語義是一樣的,完全通用,,在Spring以后的版本中可能會(huì)給它們追加更多的語義,。所以,我們推薦使用@Repository,、@Service,、@Controller來替代@Component,。

2.2. 使用<context:component-scan />讓Bean定義注解工作起來

Java代碼 復(fù)制代碼 收藏代碼
  1. <beans xmlns="http://www./schema/beans" xmlns:xsi="http://www./2001/XMLSchema-instance" xmlns:context="http://www./schema/context"  
  2.     xsi:schemaLocation="http://www./schema/beans   
  3.     http://www./schema/beans/spring-beans-2.5.xsd   
  4.     http://www./schema/context   
  5.     http://www./schema/context/spring-context-2.5.xsd">   
  6.     <context:component-scan base-package="com.kedacom.ksoa" />   
  7. </beans>  


這里,所有通過<bean>元素定義Bean的配置內(nèi)容已經(jīng)被移除,,僅需要添加一行<context:component-scan />配置就解決所有問題了——Spring XML配置文件得到了極致的簡(jiǎn)化(當(dāng)然配置元數(shù)據(jù)還是需要的,,只不過以注釋形式存在罷了)。<context:component-scan />的base-package屬性指定了需要掃描的類包,,類包及其遞歸子包中所有的類都會(huì)被處理,。
<context:component-scan />還允許定義過濾器將基包下的某些類納入或排除。Spring支持以下4種類型的過濾方式:

  • 過濾器類型 表達(dá)式范例 說明
  • 注解 org.example.SomeAnnotation 將所有使用SomeAnnotation注解的類過濾出來
  • 類名指定 org.example.SomeClass 過濾指定的類
  • 正則表達(dá)式 com\.kedacom\.spring\.annotation\.web\..* 通過正則表達(dá)式過濾一些類
  • AspectJ表達(dá)式 org.example..*Service+ 通過AspectJ表達(dá)式過濾一些類


以正則表達(dá)式為例,,我列舉一個(gè)應(yīng)用實(shí)例:

Java代碼 復(fù)制代碼 收藏代碼
  1. <context:component-scan base-package="com.casheen.spring.annotation">   
  2.     <context:exclude-filter type="regex" expression="com\.casheen\.spring\.annotation\.web\..*" />   
  3. </context:component-scan>  


值得注意的是<context:component-scan />配置項(xiàng)不但啟用了對(duì)類包進(jìn)行掃描以實(shí)施注釋驅(qū)動(dòng)Bean定義的功能,,同時(shí)還啟用了注釋驅(qū)動(dòng)自動(dòng)注入的功能(即還隱式地在內(nèi)部注冊(cè)了AutowiredAnnotationBeanPostProcessor和CommonAnnotationBeanPostProcessor),因此當(dāng)使用<context:component-scan />后,,就可以將<context:annotation-config />移除了,。

2.3. 使用@Scope來定義Bean的作用范圍
在使用XML定義Bean時(shí),我們可能還需要通過bean的scope屬性來定義一個(gè)Bean的作用范圍,,我們同樣可以通過@Scope注解來完成這項(xiàng)工作:

Java代碼 復(fù)制代碼 收藏代碼
  1. @Scope("session")   
  2. @Component()   
  3. public class UserSessionBean implements Serializable {   
  4.     ...   
  5. }  

    本站是提供個(gè)人知識(shí)管理的網(wǎng)絡(luò)存儲(chǔ)空間,,所有內(nèi)容均由用戶發(fā)布,不代表本站觀點(diǎn),。請(qǐng)注意甄別內(nèi)容中的聯(lián)系方式,、誘導(dǎo)購買等信息,謹(jǐn)防詐騙,。如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,,請(qǐng)點(diǎn)擊一鍵舉報(bào)。
    轉(zhuǎn)藏 分享 獻(xiàn)花(0

    0條評(píng)論

    發(fā)表

    請(qǐng)遵守用戶 評(píng)論公約

    類似文章 更多