注解

本文介绍了一个自定义Java注解Misquotation的实现与应用。该注解用于指定方法的用户名和密码参数,通过反射机制在运行时获取这些信息。文章详细展示了如何创建注解、在方法上使用它以及如何通过反射读取注解数据。
摘要由CSDN通过智能技术生成

注解

package annotation;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

//哪些类型可以使用
@Target({ElementType.METHOD})
//保留的方式
@Retention(RetentionPolicy.RUNTIME)
public @interface Misquotation {
    String userName() ;
    String password() ;

}

package annotation;

import java.lang.reflect.Method;

public class MisquotationTest01 {

@Misquotation(userName = "admin",password = "12345")
        public void doSome(){

        }

    public static void main(String[] args) throws Exception {
        //获取这个类
        Class misquotation = Class.forName("annotation.MisquotationTest01");
        //获取doSome方法
        Method doSomeMethod = misquotation.getDeclaredMethod("doSome");
        //判断这个方法上是否含有这个注解     misquotation.isAnnotatonPresent(Misquotation.class)
        //判断这个类中是否含有这个注解if(doSomeMethod.isAnnotationPresent(Misquotation.class)){
           Misquotation misquotation1 = doSomeMethod.getAnnotation(Misquotation.class);
           System.out.println(misquotation1.userName());
           System.out.println(misquotation1.password());
       }
    }
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值