1. 程式人生 > >Spring 模式註解裝配

Spring 模式註解裝配

模式註解(Stereotype Annotations)  
A stereotype annotation is an annotation that is used to declare the role that a component plays within the
application. For example, the  @Repository annotation in the Spring Framework is a marker for any class that fulfills the role or stereotype of a repository (also known as Data Access Object or DAO)

[email protected]  is a generic stereotype for any Spring-managed component. Any component annotated with @Component  is a candidate for component scanning. Similarly, any component annotated with an annotation that is itself meta-annotated with  @Component  is also a candidate for component scanning. For example, @Service is meta-annotated with  @Component .
模式註解是一種用於宣告在應用中扮演“元件”角色的註解。如 Spring Framework 中的  @Repository 標註在任何類上 ,用
於扮演倉儲角色的模式註解。@Component  作為一種由 Spring 容器託管的通用模式元件,任何被  @Component  標準的元件均為元件掃描的候選物件。類似地,凡是被  @Component 元標註(meta-annotated)的註解,如  @Service  ,當任何元件標註它時,也被視作元件掃描的候選物件。

模式註解舉例

Spring Framework 註解         場景說明                     起始版本
@Repository                    資料倉儲模式註解                2.0
@Component                  通用元件模式註解                 2.5
@Service                         服務模式註解                        2.5
@Controller Web             控制器模式註解                    2.5
@Configuration                配置類模式註解                    3.0

Spring @Enable 模組裝配

Spring Framework 3.1 開始支援”@Enable 模組驅動“。所謂“模組”是指具備相同領域的功能元件集合, 組合所形成一個獨立
的單元。比如 Web MVC 模組、Aspect J代理模組、Caching(快取)模組、JMX(Java 管 理擴充套件)模組、Async(非同步處
理)模組等。

@Enable 註解模組舉例

框架實現                                                        @Enable  註解模組                                         啟用模組
Spring Framework                                         @Enable Web Mvc                                          Web MVC 模組
                                                                      @Enable Transaction Management                事務管理模組
                                                                       @Enable Caching                                           Caching 模組
                                                                       @Enable MBean Export                                 JMX 模組
                                                                       @Enable Async                                              非同步處理模組

                                                                       Enable Web Flux                                             Web Flux 模組
                                                                      @Enable Aspect JAuto Proxy                           Aspect J 代理模組
     
Spring Boot                                                   @Enable Auto Configuration                             自動裝配模組
                                                                      @Enable Management Context                         Actuator 管理模組
                                                                      @Enable Configuration Properties                     配置屬性繫結模組
                                                                      @Enable OAuth2Sso                                         OAuth2 單點登入模組

Spring Cloud                                                  @Enable Eureka Server                                   Eureka伺服器模組
                                                                       @Enable Config Server                                    配置伺服器模組
                                                                       @Enable Feign Clients                                     Feign客戶端模組
                                                                       @Enable Zuul Proxy                                         服務閘道器 Zuul 模組
                                                                       @Enable Circuit Breaker                                   服務熔斷模組
 

實現方式  
註解驅動方式  

@Retention(Retention Policy.RUNTIME)
@Target(Element Type.TYPE)
@Documented
@Import(Delegating Web Mvc Configuration.class)
public @interface Enable Web Mvc {
}

@Configuration
public class Delegating Web Mvc Configuration extends
Web Mvc Configuration Support {
    ...
}
 

介面程式設計方式

@Target(Element Type.TYPE)
@Retention(Retention Policy.RUNTIME)
@Documented
@Import(Caching Configuration Selector.class)
public @interface Enable Caching {
...
}
 

public class Caching Configuration Selector extends Advice Mode Import Selector<Enable Caching> {
    /**
    * {@inherit Doc}
    * @return {@link Proxy Caching Configuration} or {@code
    Aspect JCache Configuration} for
    * {@code PROXY} and {@code ASPECTJ} values of {@link
    Enable Caching#mode()}, respectively
    */
    public String[] select Imports(Advice Mode advice Mode) {
        switch (advice Mode) {
            case PROXY:
                return new String[] { 
Auto Proxy Registrar.class.get Name(),Proxy Caching Configuration.class.get Name() };
        case ASPECTJ:
            return new String[] {
                Annotation Config Utils.CACHE_ASPECT_CONFIGURATION_CLASS_NAME };
        default:
            return null;
    }
}