利用注解(Annotation)与反射(Reflect)调用某个类的某个方法

注解类

@Target(ElementType.TYPE) //目标给谁用(类,方法,成员变量,参数)

@Retention(RetentionPolicy.RUNTIME) //运行的时间 (生命周期)

@Documented //在生成文件后标签还会保留

public @interface XReqMap{
       String value() default "" ; //value成员变量,()因为用了interface
                                   // value 默认成员变量
}

目标对象

@XController
public class UserController {

         @XReqMap("/hello")
          public void hello(){
              System.out.println("hello...");
          }

}

写个测试类
(在此为了演示我直接把异常给抛出)

public class DemoZ1 {

    private static Map<String,Method> mapUrlMethod=new HashMap<>(); //输入方法路劲时,得到对应方法

    public static void main(String[] args) throws ClassNotFoundException, IllegalAccessException, InstantiationException, InvocationTargetException {

        //获取对应的类路劲,等下要用到反射
        String classurl="cn.lyj.controller.UserController";

      
        //获取类对象
        Class c=Class.forName(classurl);

        //创建实例
        Object obj = c.newInstance();

        //获得该类的所有方法对象
        Method [] methods=c.getDeclaredMethods();
        
        //forEach 遍历方法对象
        for(Method m:methods){

            //判断是不是XReqMap的注解
            boolean b=m.isAnnotationPresent(XReqMap.class);

            if (b){  
               //如果有存在就把该标签取出来
                XReqMap xReqMap=m.getAnnotation(XReqMap.class);
               //把方法和该方法对应的标签进行绑定 
                mapUrlMethod.put(xReqMap.value(),m);
               
            }

        }
      }
     }   

测试代码

Scanner input=new Scanner(System.in);

 System.out.print("请输入请求路劲");
            String url=input.next();
            Method m=mapUrlMethod.get(url);  //通过标签得到对应的方法
            if (m==null){
                System.out.println("找不到方法 404");
                continue;                   //如果没找到就跳过下一步
            }
            m.invoke(obj); 

结果
在这里插入图片描述

  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
要通过反射修改注解中的某个属性的值,你可以使用 `java.lang.reflect.Proxy` 来代理注解,并在代理对象上修改属性值。下面是一个示例代码: ```java import java.lang.annotation.Annotation; import java.lang.reflect.Field; import java.lang.reflect.InvocationHandler; import java.lang.reflect.Method; import java.lang.reflect.Proxy; public class Main { public static void main(String[] args) throws NoSuchFieldException { // 获取字段上的注解 Field field = MyClass.class.getDeclaredField("myField"); MyAnnotation annotation = field.getAnnotation(MyAnnotation.class); // 修改注解中的属性值 if (annotation != null) { System.out.println("Before modification: " + annotation.value()); MyAnnotation modifiedAnnotation = modifyAnnotationValue(annotation, "new value"); System.out.println("After modification: " + modifiedAnnotation.value()); } } public static MyAnnotation modifyAnnotationValue(MyAnnotation annotation, String newValue) { return (MyAnnotation) Proxy.newProxyInstance( annotation.getClass().getClassLoader(), new Class[] { MyAnnotation.class }, new AnnotationInvocationHandler(annotation, newValue) ); } } class AnnotationInvocationHandler implements InvocationHandler { private final MyAnnotation originalAnnotation; private final String newValue; public AnnotationInvocationHandler(MyAnnotation originalAnnotation, String newValue) { this.originalAnnotation = originalAnnotation; this.newValue = newValue; } @Override public Object invoke(Object proxy, Method method, Object[] args) throws Throwable { // 修改属性值 if (method.getName().equals("value")) { return newValue; } // 其他方法调用保持原样 return method.invoke(originalAnnotation, args); } } @MyAnnotation("old value") class MyClass { @MyAnnotation("old value") private String myField; } @interface MyAnnotation { String value(); } ``` 在上面的例子中,我们定义了一个自定义注解 `MyAnnotation`,并将其应用到了 `MyClass` 的字段 `myField` 上。通过反射和动态代理,我们创建了一个代理对象,该代理对象可以修改注解中的属性值。 在 `modifyAnnotationValue` 方法中,我们使用 `Proxy.newProxyInstance` 方法创建了一个代理对象,该代理对象会调用 `AnnotationInvocationHandler` 的 `invoke` 方法来处理方法调用。在 `invoke` 方法中,我们判断被调用方法是否是注解中的属性方法(这里是 `value()` 方法),如果是,则返回修改后的属性值;如果不是,则保持原样调用。 请注意,这种方法需要使用动态代理,并且可能会对性能产生一定的影响。在实际开发中,请谨慎使用反射和动态代理,并考虑其他替代方案。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值