springboot 多個sevice類實現同一接口的調用

參考頁面:http://blog.csdn.net/xiao190128/article/details/54890759/;感謝分享html

service  是有用的至關於 xml配置中得bean  id = service  也能夠不指定 不指定至關於 bean id =  com. service.service 就是這個類的全限定名,表示給當前類命名一個別名,方便注入到其餘須要用到的類中;不加的話,默認別名就是當前類名,可是首字母小寫 java

Spring註解@Component、@Repository、@Service、@Controller區別spring

若是 Web 應用程序採用了經典的三層分層結構的話,最好在持久層、業務層和控制層分別採用 @Repository、@Service 和 @Controller 對分層中的類進行註釋,而用 @Component 對那些比較中立的類進行註釋。 

在一個稍大的項目中,一般會有上百個組件,若是這些組件採用xml的bean定義來配置,顯然會增長配置文件的體積,查找以及維護起來也不太方便。 Spring2.5爲咱們引入了組件自動掃描機制,他能夠在類路徑底下尋找標註了@Component,@Service,@Controller,@Repository註解的類,並把這些類歸入進spring容器中管理。它的做用和在xml文件中使用bean節點配置組件時同樣的。要使用自動掃描機制,咱們須要打開如下配置信息: 
Java代碼 

1. <?xml version="1.0" encoding="UTF-8" ?> <beansxmlns="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-2.5.xsd  http://www.springframework.org/schema/context  http://www.springframework.org/schema/context/spring-context-2.5.xsd" 
2. > 
3.   
4. <context:component-scan base-package=」com.eric.spring」>   
5. </beans>   
6. 其中base-package爲須要掃描的包(含全部子包) @Service用於標註業務層組件,@Controller用於標註控制層組件(如struts中的action),@Repository用於標註數據訪問組件,即DAO組件,而@Component泛指組件,當組件很差歸類的時候,咱們可使用這個註解進行標註。  ui

 

 
  1. @Service  
  2. public class VentorServiceImpl implements iVentorService{     
  3. }   
  4.   
  5. Repository  
  6. public class VentorDaoImpl implements iVentorDao {   
  7. }   

  1. getBean的默認名稱是類名(頭字母小寫),若是想自定義,能夠@Service(「aaaaa」)這樣來指定,這種bean默認是單例的, 
  1. 若是想改變,可使用  
  1. @Service(「beanName」)  
  1. @Scope(「prototype」)來改變。可使用如下方式指定初始化方法和銷燬方法(方法名任意):  
  1. @PostConstruct  
  1. public void init() {   
  2.  }   
  3.   
  4.  @PreDestroy  
  5.  public void destory() {   
  6.  }   

注入方式: 

把DAO實現類注入到service實現類中,把service的接口(注意不要是service的實現類)注入到action中,注 

入時不要new 這個注入的類,由於spring會自動注入,若是手動再new的話會出現錯誤,而後屬性加上 

@Autowired後不須要getter()和setter()方法,Spring也會自動注入。

註解: 

在 spring的配置文件裏面只須要加上<context:annotation-config/>和<context:component-scanbase-package="須要實現注入的類所在包"/>,url

可使用base-package="*"表示所有的類。   

< context:component-scan base-package=」com.eric.spring」> 

其中base-package爲須要掃描的包(含全部子包) 

在接口前面標上@Autowired和@Qualifier註釋使得接口能夠被容器注入,當接口存在兩個實現類的時候必須指定其中一個來注入,spa

使用實現類首字母小寫的字符串來注入,如: 

    @Autowired      
   
    @Qualifier("chinese")       
   
     private Man man;    
不然能夠省略,只寫@Autowired  。 

@Service服務層組件,用於標註業務層組件,表示定義一個bean,自動根據bean的類名實例化一個首寫字母爲小寫的bean,.net

例如Chinese實例化爲chinese,若是須要本身更名字則:@Service("你本身改的bean名")。   

@Controller用於標註控制層組件(如struts中的action) 

@Repository持久層組件,用於標註數據訪問組件,即DAO組件 

@Component泛指組件,當組件很差歸類的時候,咱們可使用這個註解進行標註。 


@Service 
public class VentorServiceImpl implements iVentorService { 


@Repository 
public class VentorDaoImpl implements iVentorDao { 


getBean 的默認名稱是類名(頭字母小寫),若是想自定義,能夠@Service(「aaaaa」) 這樣來指定,這種 

bean默認是單例的,若是想改變,可使用@Service(「beanName」)@Scope(「prototype」)來改變。 

可使用如下方式指定初始化方法和銷燬方法(方法名任意): 

@PostConstruct 

public void init() { 



@PreDestroy 

public void destory() { 

prototype

Spring中@Autowired註解、@Resource註解的區別

Spring不但支持本身定義的@Autowired註解,還支持幾個由JSR-250規範定義的註解,它們分別是@Resource、@PostConstruct以及@PreDestroy。
@Resource的做用至關於@Autowired,只不過@Autowired按byType自動注入,而@Resource默認按 byName自動注入罷了。@Resource有兩個屬性是比較重要的,分是name和type,Spring將@Resource註解的name屬性解析爲bean的名字,而type屬性則解析爲bean的類型。因此若是使用name屬性,則使用byName的自動注入策略,而使用type屬性時則使用byType自動注入策略。若是既不指定name也不指定type屬性,這時將經過反射機制使用byName自動注入策略。
@Resource裝配順序
1. 若是同時指定了name和type,則從Spring上下文中找到惟一匹配的bean進行裝配,找不到則拋出異常
2. 若是指定了name,則從上下文中查找名稱(id)匹配的bean進行裝配,找不到則拋出異常
3. 若是指定了type,則從上下文中找到類型匹配的惟一bean進行裝配,找不到或者找到多個,都會拋出異常
4. 若是既沒有指定name,又沒有指定type,則自動按照byName方式進行裝配;若是沒有匹配,則回退爲一個原始類型進行匹配,若是匹配則自動裝配;code

@Autowired 與@Resource的區別:component

一、 @Autowired與@Resource均可以用來裝配bean.均可以寫在字段上,或寫在setter方法上。

二、 @Autowired默認按類型裝配(這個註解是屬業spring的),默認狀況下必需要求依賴對象必須存在,若是要容許null值,能夠設置它的required屬性爲false,如:@Autowired(required=false),若是咱們想使用名稱裝配能夠結合@Qualifier註解進行使用,以下:

1

@Autowired() @Qualifier("baseDao")

2

private BaseDao baseDao;

三、@Resource(這個註解屬於J2EE的),默認安裝名稱進行裝配,名稱能夠經過name屬性進行指定,若是沒有指定name屬性,當註解寫在字段上時,默認取字段名進行安裝名稱查找,若是註解寫在setter方法上默認取屬性名進行裝配。當找不到與名稱匹配的bean時才按照類型進行裝配。可是須要注意的是,若是name屬性一旦指定,就只會按照名稱進行裝配。

1

@Resource(name="baseDao")

2

private BaseDao baseDao;

推薦使用:@Resource註解在字段上,這樣就不用寫setter方法了,而且這個註解是屬於J2EE的,減小了與spring的耦合。這樣代碼看起就比較優雅。

相關文章
相關標籤/搜索