Stellen Sie sich eine kompilierte Klasse mit einer Annotation vor, die wie folgt definiert ist:
@Something(someProperty = "some value") public class Foobar { //... }
Können wir den Wert von „someProperty“ zur Laufzeit in einen anderen ändern, ohne den Quellcode zu ändern? Wert, sodass die nachfolgende Reflektion den aktualisierten Wert anstelle des Standardwerts abruft?
Haftungsausschluss: Die Lösung ist möglicherweise nicht auf allen Plattformen anwendbar (z. B. macOS). ).
Ansatz:
Nutzung der Annotationsreflexion von Java Mechanismus können wir die zugrunde liegenden Annotationswerte dynamisch ändern, indem wir die internen Datenstrukturen manipulieren.
Code:
/** * Modifies the specified annotation's key with the new value and returns the previous value. */ @SuppressWarnings("unchecked") // Suppress unchecked type warning for convenience public static Object changeAnnotationValue(Annotation annotation, String key, Object newValue) { Object handler = Proxy.getInvocationHandler(annotation); // Obtain InvocationHandler for the annotation Field memberValuesField; try { memberValuesField = handler.getClass().getDeclaredField("memberValues"); // Fetch "memberValues" field } catch (NoSuchFieldException | SecurityException e) { throw new IllegalStateException(e); } memberValuesField.setAccessible(true); // Make field accessible Map<String, Object> memberValues; try { memberValues = (Map<String, Object>) memberValuesField.get(handler); // Obtain member values map } catch (IllegalArgumentException | IllegalAccessException e) { throw new IllegalStateException(e); } Object oldValue = memberValues.get(key); // Get the old value if (oldValue == null || oldValue.getClass() != newValue.getClass()) { // Ensure type safety throw new IllegalArgumentException(); } memberValues.put(key, newValue); // Set the new value return oldValue; // Return the old value }
@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) { ClassAnnotation classAnnotation = TestClass.class.getAnnotation(ClassAnnotation.class); System.out.println("Old ClassAnnotation: " + classAnnotation.value()); changeAnnotationValue(classAnnotation, "value", "another value"); System.out.println("Modified ClassAnnotation: " + classAnnotation.value()); // Modify field and method annotations similarly }
Das obige ist der detaillierte Inhalt vonKönnen wir Java-Annotation-Parameterwerte zur Laufzeit ändern?. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!