>Java >java지도 시간 >Java에서 런타임 시 주석 매개변수 값을 수정할 수 있습니까?

Java에서 런타임 시 주석 매개변수 값을 수정할 수 있습니까?

Linda Hamilton
Linda Hamilton원래의
2024-12-11 18:51:15361검색

Can Annotation Parameter Values Be Modified at Runtime in Java?

런타임에 주석 매개변수 값 수정

특정 매개변수 값으로 장식된 주석이 있는 클래스를 발견하고 이를 변경하고 싶다고 상상해 보세요. 런타임 시 값. JVM에 이미 로드된 컴파일된 클래스의 주석 매개변수 값을 변경하는 것이 가능합니까?

해결책:

예, 주석 매개변수를 수정할 수 있습니다. 런타임 시 값. 다음 접근 방식을 사용할 수 있습니다.

@SuppressWarnings("unchecked")
public static Object changeAnnotationValue(Annotation annotation, String key, Object newValue) {
    Object handler = Proxy.getInvocationHandler(annotation);
    Field f;
    try {
        f = handler.getClass().getDeclaredField("memberValues");
    } catch (NoSuchFieldException | SecurityException e) {
        throw new IllegalStateException(e);
    }
    f.setAccessible(true);
    Map<String, Object> memberValues;
    try {
        memberValues = (Map<String, Object>) f.get(handler);
    } catch (IllegalArgumentException | IllegalAccessException e) {
        throw new IllegalStateException(e);
    }
    Object oldValue = memberValues.get(key);
    if (oldValue == null || oldValue.getClass() != newValue.getClass()) {
        throw new IllegalArgumentException();
    }
    memberValues.put(key, newValue);
    return oldValue;
}

사용:

@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
public @interface ClassAnnotation {
  String value() default "";
}

@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.FIELD)
public @interface FieldAnnotation {
  String value() default "";
}

@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.METHOD)
public @interface MethodAnnotation {
  String value() default "";
}

@ClassAnnotation("class test")
public static class TestClass {
    @FieldAnnotation("field test")
    public Object field;

    @MethodAnnotation("method test")
    public void method() {}
}

public static void main(String[] args) throws Exception {
    final ClassAnnotation classAnnotation = TestClass.class.getAnnotation(ClassAnnotation.class);
    System.out.println("old ClassAnnotation = " + classAnnotation.value());
    changeAnnotationValue(classAnnotation, "value", "another class annotation value");
    System.out.println("modified ClassAnnotation = " + classAnnotation.value());

    Field field = TestClass.class.getField("field");
    final FieldAnnotation fieldAnnotation = field.getAnnotation(FieldAnnotation.class);
    System.out.println("old FieldAnnotation = " + fieldAnnotation.value());
    changeAnnotationValue(fieldAnnotation, "value", "another field annotation value");
    System.out.println("modified FieldAnnotation = " + fieldAnnotation.value());

    Method method = TestClass.class.getMethod("method");
    final MethodAnnotation methodAnnotation = method.getAnnotation(MethodAnnotation.class);
    System.out.println("old MethodAnnotation = " + methodAnnotation.value());
    changeAnnotationValue(methodAnnotation, "value", "another method annotation value");
    System.out.println("modified MethodAnnotation = " + methodAnnotation.value());
}

이 접근 방식은 주석의 내부 표현을 직접 수정하여 작동합니다. 결과적으로 후속 리플렉션 호출은 변경된 매개변수 값을 검색합니다. 새로운 주석 인스턴스를 생성할 필요가 없으므로 특정 주석 클래스에 대한 사전 지식이 필요하지 않다는 장점이 있습니다. 또한 원본 주석 인스턴스를 그대로 유지함으로써 부작용을 최소화합니다.

위 내용은 Java에서 런타임 시 주석 매개변수 값을 수정할 수 있습니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.