1. 程式人生 > 程式設計 >通過例項解析Spring組合註解與元註解

通過例項解析Spring組合註解與元註解

這篇文章主要介紹了通過例項解析Spring組合註解與元註解,文中通過示例程式碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友可以參考下

1、概述

1.1、Spring提供了大量的註解,

尤其是相同的註解用到各個類中,會相當的囉嗦;

1.2、元註解:

可以註解到別的註解上的註解;

組合註解:

被註解註解的註解稱為 組合註解;

組合註解 具備 元註解 的功能,Spring的很多註解都可以作為元註解;

1.3、案例

package com.an.config;
 
import com.an.annotation.MyAnnotation;
 
/**
 * @description:
 * @author: anpeiyong
 * @date: Created in 2019/11/21 8:57
 * @since:
 */
@MyAnnotation(value = "com.an")
public class AnnotationConfig {
}
package com.an.annotation;
 
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
 
/**
 * @description:
 * @author: anpeiyong
 * @date: Created in 2019/11/21 8:47
 * @since:
 */
@Target(value = ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
@Configuration
@ComponentScan
public @interface MyAnnotation {
  String[] value() default {};
}
package com.an.annotation;
 
import org.springframework.stereotype.Service;
 
/**
 * @description:
 * @author: anpeiyong
 * @date: Created in 2019/11/21 8:54
 * @since:
 */
@Service
public class AnnotationService {
 
  public void output(){
    System.out.println("組合註解成功。。。");
  }
}
package com.an.main;
 
import com.an.annotation.AnnotationService;
import com.an.config.AnnotationConfig;
import org.springframework.context.annotation.AnnotationConfigApplicationContext;
 
/**
 * @description:
 * @author: anpeiyong
 * @date: Created in 2019/11/21 8:57
 * @since:
 */
public class AnnotationMainTest {
 
  public static void main(String[] args) {
    AnnotationConfigApplicationContext annotationConfigApplicationContext=new AnnotationConfigApplicationContext(AnnotationConfig.class);
    AnnotationService annotationService=annotationConfigApplicationContext.getBean(AnnotationService.class);
    annotationService.output();
    annotationConfigApplicationContext.close();
  }
}

結果:

組合註解成功。。。

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支援我們。