499. Java 反射 - 获取类型上的注解

499. Java 反射 - 获取类型上的注解

1. 背景介绍

  • Java 8 引入了 TYPE_USE 注解目标 ,意味着注解不仅可以标记在类、方法、字段上,还可以直接标记在类型使用的位置
  • 举例:继承、实现接口、方法参数、返回值、异常声明等地方都可以放置注注解。
  • 为了支持这种能力,反射 API 提供了 AnnotatedType 接口,用来访问类型上的注解。

2. 定义一个 @NonNull 注解

java 复制代码
@Target(ElementType.TYPE_USE)
@Retention(RetentionPolicy.RUNTIME)
@interface NonNull {}

这里用 TYPE_USE 表示:注解可以用在"类型使用"的地方,而不是仅仅在"类型定义"上。


3. 在类型使用上应用注解

java 复制代码
public class Person {}

public class User
        extends @NonNull Person
        implements @NonNull Serializable {}

👉 这里:

  • User 继承了 @NonNull Person
  • User 实现了 @NonNull Serializable

4. 使用反射获取类型注解

java 复制代码
Class<?> c = User.class;

// 获取父类上的注解
AnnotatedType superClass = c.getAnnotatedSuperclass();
for (Annotation annotation : superClass.getAnnotations()) {
    System.out.println("annotation on the super class = " + annotation);
}

// 获取接口上的注解
AnnotatedType[] interfaces = c.getAnnotatedInterfaces();
for (AnnotatedType annotatedInterface : interfaces) {
    for (Annotation annotation : annotatedInterface.getAnnotations()) {
        System.out.println("annotation on the implemented interface = " + annotation);
    }
}

运行结果:

java 复制代码
annotation on the super class = @org.devjava.NonNull()
annotation on the implemented interface = @org.devjava.NonNull()

💡 要点

  • getAnnotatedSuperclass():查看父类上的类型注解。
  • getAnnotatedInterfaces():查看接口上的类型注解。

5. 在异常声明上使用注解

有时我们希望给异常类型本身加注解,比如告诉调用者某个异常可以安全地转化为 RuntimeException。

定义注解

java 复制代码
@Target(ElementType.TYPE_USE)
@Retention(RetentionPolicy.RUNTIME)
public @interface ReThrowAsRuntimeException {}

在构造器上使用

java 复制代码
class EmptyStringException extends Exception {
    public EmptyStringException(String message) {
        super(message);
    }
}

public class Message {
    private final String name;

    public Message(String name) throws @ReThrowAsRuntimeException EmptyStringException {
        if (name == null || name.isEmpty()) {
            throw new EmptyStringException("name is empty");
        }
        this.name = name;
    }
}

6. 客户端代码示例

java 复制代码
try {
    Message message = new Message(""); // 会触发异常
} catch (EmptyStringException e) {
    Constructor<?> constructor = Message.class.getConstructor(String.class);

    AnnotatedType[] exceptionTypes = constructor.getAnnotatedExceptionTypes();
    for (AnnotatedType exceptionType : exceptionTypes) {
        if (exceptionType.isAnnotationPresent(ReThrowAsRuntimeException.class)) {
            throw new RuntimeException(e); // 自动包装成运行时异常
        }
    }
}

运行结果:

java 复制代码
Exception in thread "main" java.lang.RuntimeException: org.devjava.EmptyStringException: name is empty
Caused by: org.devjava.EmptyStringException: name is empty

7. 总结

  • 普通注解 用在类、方法、字段;类型注解用在"类型使用"的地方。
  • 使用反射时:
    • getAnnotatedSuperclass() → 父类的类型注解
    • getAnnotatedInterfaces() → 接口的类型注解
    • getAnnotatedExceptionTypes() → 异常类型的注解
  • 这种能力非常适合做 代码质量检查、契约验证 (比如 @NonNull)、以及 异常处理策略 (比如 @ReThrowAsRuntimeException)。
相关推荐
BingoGo4 小时前
PHP clone 之后,为什么改副本会影响原对象?
后端·php
JaguarJack4 小时前
PHP clone 之后,为什么改副本会影响原对象?
后端·php·服务端
小灰灰搞电子5 小时前
Rust+Slint 实现动态消息提示框源码分享
开发语言·后端·rust
小奏技术5 小时前
10 MB 的 Postman 替代品,启动不到 1 秒
后端
东风破_5 小时前
Text2SQL :用自然语言操作 SQLite 数据库
人工智能·后端
宿6746 小时前
vue3-包管理器
前端·vue.js
@PHARAOH6 小时前
WHAT - Remix 入门和基本实践:理解两套产物
前端·remix
mayaairi6 小时前
Vue2 生命周期完全指南:从创建到销毁的8个钩子函数
前端·javascript·vue.js
xy34537 小时前
axure9.0 如何打造一个计时器(简单版)
前端·ui·html·axure·原型·产品设计
IMPYLH8 小时前
HTML 的 <pre> 元素
前端·javascript·html