java自定义注解怎么实现注解_如何实现自定义注解

展开全部

首先,e5a48de588b662616964757a686964616f31333363386133定义一个注解:package com.guxiang.test;

import java.lang.annotation.Documented;

import java.lang.annotation.ElementType;

import java.lang.annotation.Retention;

import java.lang.annotation.RetentionPolicy;

import java.lang.annotation.Target;

首先自定义一个 myTest注解

/**

* @author guxiang

* @date 2016年12月24日 下午10:22:11

* 自定义的myTest注解

*/

@Documented

@Retention(RetentionPolicy.RUNTIME)

@Target({ElementType.METHOD,ElementType.ANNOTATION_TYPE})

public @interface MyTest {

long time() default -1;

}

其次,写一个类用于被myTest注解,实现测试:package com.guxiang.test;

public class SomeDaoImpl {

public void save(){

System.out.println("保存了数据");

}

public void update(){

System.out.println("更新了数据");

}

}

写一个测试类 这个类 引用myTest注解:package com.guxiang.test;

public class SomeDaoImplTest {

private SomeDaoImpl dao= new SomeDaoImpl();

/**

* 测试添加

*/

@MyTest

public void testAdd(){

dao.save();

}

@MyTest

public void testUpdate(){

dao.update();

}

最后,写一个myTestRunner类使用反射实现注解的功能:package com.guxiang.test;

import java.lang.reflect.InvocationTargetException;

import java.lang.reflect.Method;

// 反射注解

public class MyTestRunner {

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

Class clazz = SomeDaoImplTest.class;

Method[] ms = clazz.getMethods();

for (Method method : ms) {

boolean hasMyTest = method.isAnnotationPresent(MyTest.class);

if (hasMyTest) {

method.invoke(clazz.newInstance(), null);

}

}

}

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值