赞
踩
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
public @interface MyAnno {
}
创建一个服务类,类上使用自定义的注解
@MyAnno
public class Service1 {
public void method1(String name){
System.out.println("这是方法一" + "name");
}
public void method2(String n
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。