次のように定義されたアノテーションを持つコンパイル済みクラスを考えてみましょう:
@Something(someProperty = "some value") public class Foobar { //... }
ソースコードを変更せずに、の値を変更できますか? "someProperty" を実行時に別の値に変更します。その後のリフレクションでは、デフォルトの代わりに更新された値が取得されますか?
免責事項: ソリューションは、次のとおりであるとは限りません。すべてのプラットフォームに適用可能 (例: macOS).
アプローチ:
Java のアノテーション反映メカニズムを活用し、内部データを操作することで基礎となるアノテーション値を動的に変更できます。
コード:
/** * 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 }
以上が実行時に Java アノテーション パラメータ値を変更できますか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。