91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Java教程:JAVA自定義注解

發布時間:2020-08-11 17:45:32 來源:ITPUB博客 閱讀:174 作者:千鋒Python唐小強 欄目:編程語言

注解概念

注解是Java SE 5.0版本開始引入的概念,它是對java源代碼的說明,是一種元數據(描述數據的數據)。

注解和注釋的不同

  • 注釋注釋是對代碼的說明,給代碼的讀者看,便于幫讀者梳理業務邏輯;在程序代碼中經常看到的以@ 開頭的大部分是注解;
  • 注解注解也是對代碼的說明,需要配合工具(解析它的代碼)使用,參與代碼的編譯,給應用程序看的;

注解分類

注解以@開頭,我們會在應用程序中見到各種各樣的注解,比如 @Autowired,@Service,@Controller,@Override,@Test,@Value 等等,按照來源劃分,可以分為  JDK的注解第三方的注解自定義注解

JDK注解

JAVA 內置注解

  • @Override (標記重寫方法)
  • @Deprecated (標記過時)
  • @SuppressWarnings (忽略警告)
元注解 (注解的注解)
  • @Target (注解的作用目標)
  • @Retention (注解的生命周期)
  • @Document (注解是否被包含在JavaDoc中)
  • @Inherited (是否允許子類集成該注解)

第三方注解(各種框架注解)

請自行百度各個框架的注解詳解

自定義注解

使用元注解自己定義的注解

JDK中有一些元注解,主要有@Target,@Retention,@Document,@Inherited用來修飾注解。

@Target

表明該注解可以應用的java元素類型

Java教程:JAVA自定義注解
@Retention

表明該注解的生命周期

Java教程:JAVA自定義注解
@Document

表明該注解標記的元素可以被Javadoc 或類似的工具文檔化

@Inherited

表明使用了@Inherited注解的注解,所標記的類的子類也會擁有這個注解

注解格式


/**

* 修飾符 @interface 注解名 {
* 注解元素的聲明1
* 注解元素的聲明2
* }
* 修飾符:訪問修飾符必須為public,不寫默認為pubic;
* 關鍵字:必須為 @interface
* 注解名: 注解名稱為自定義注解的名稱,使用時還會用到;
* 注解類型元素:注解類型元素是注解中內容,可以理解成自定義接口的實現部分;
*/
@Target({ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface MyTestAnnotation {
    /**
    * 注解的元素聲明的兩種形式
    * type elementName();
    * type elementName() default value;  
    */
   String value() default "test";
}

注解樣例

接下來我們以Spring中的 @Service 注解為例


@Target({ElementType
.TYPE})
// ElementType.TYPE 代表在注解上使用

@Retention(RetentionPolicy.RUNTIME)// RetentionPolicy.RUNTIME 代表運行時使用,可以通過反射獲取到
@Documented//包含在JavaDoc中
@Component//允許通過包掃描的方式自動檢測
public @interface Service {

/**
* The value may indicate a suggestion for a logical component name,
* to be turned into a Spring bean in case of an autodetected component.
* @return the suggested component name, if any (or empty String otherwise)
*/
@AliasFor(annotation = Component.class)
String value() default "";
}

@Annotation

JDK1.5有的,在rt.jar包下 java.lang.annotation包下,所有的注解默認繼承了Annotation接口,但是它本身不能定義注解。

package java.lang.annotation;


/**
* 所有的注解默認繼承了Annotation接口,但是它本身不能定義注解。
* The common interface extended by all annotation types.  Note that an
* interface that manually extends this one does <i>not</i> define
* an annotation type.  Also note that this interface does not itself
* define an annotation type.
*
* More information about annotation types can be found in section 9.6 of
* <cite>The Java? Language Specification</cite>.
*
* The { @link java.lang.reflect.AnnotatedElement} interface discusses
* compatibility concerns when evolving an annotation type from being
* non-repeatable to being repeatable.
*
* @author  Josh Bloch
* @since   1.5
*/
public interface Annotation {
   .
   .
   .
}

實現自定義注解

第一步-定義自定義注解


@Target({ElementType.TYPE})

@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface MyTestAnnotation {
   String value() default "test";
}

第二步-配置注解


@Data

@Builder
@MyTestAnnotation
public class MyBean {
    private String name;
    private int age;
}

第三步-利用反射解析注解


public 

class 
MyTest {


    //isAnnotationPresent:判斷當前元素是否被指定注解修飾
   //getAnnotation:返回指定的注解
   //getAnnotations:返回所有的注解
   public static void main(String[] args) {
       try {
           //獲取MyBean的Class對象
           MyBean myBean = MyBean.builder().build();
           Class clazz = myBean.getClass();
           
           //判斷myBean對象上是否有MyTestAnnotation注解
           if (clazz.isAnnotationPresent(MyTestAnnotation.class)) {
               System.out.println("MyBean類上配置了MyTestAnnotation注解!");
               //獲取該對象上MyTestAnnotation類型的注解
               MyTestAnnotation myTestAnnotation = (MyTestAnnotation) clazz.getAnnotation(MyTestAnnotation.class);
               System.out.println(myTestAnnotation.value());
           } else {
               System.out.println("MyBean類上沒有配置MyTestAnnotation注解!");
           }
       } catch (Exception e) {
           e.printStackTrace();
       }
   }
}

執行main方法,運行結果:

Connected to the target VM, address: 
'127.0.0.1:62125', transport: 
'socket'

MyBean類上配置了MyTestAnnotation注解!
test
Disconnected from the target VM, address: '127.0.0.1:62125', transport: 'socket'
向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

南漳县| 贡嘎县| 黔江区| 房产| 延吉市| 宜城市| 榆中县| 岑溪市| 安庆市| 东方市| 调兵山市| 昌吉市| 武宁县| 田林县| 通道| 清苑县| 庄河市| 淄博市| 诸城市| 沧州市| 马边| 乌鲁木齐县| 汝州市| 古丈县| 泗洪县| 兴城市| 岳西县| 教育| 屯昌县| 莱芜市| 体育| 诸城市| 白银市| 郎溪县| 玛沁县| 宿松县| 从江县| 孟连| 万盛区| 深州市| 商水县|