java Annotation 自定义实例
2020-11-23 08:57
标签:des style java color 使用 os Defining annotations Here is the definition of the annotation above. You can see that annotation definitions look a lot like interface definitions. In fact, they compile to class files like any other Java interface: import java.lang.annotation.*; -------------------------------使用注释---------------------------------------------------------------------------------------------- import java.util.*; -------------------------------使用反射机制,测试注解使用--------------------------------------------------------------------- import java.lang.reflect.*; ------------------------------------------------------------------输出结果---------------------------------------------------------------- /* Output: java Annotation 自定义实例,搜素材,soscw.com java Annotation 自定义实例 标签:des style java color 使用 os 原文地址:http://blog.csdn.net/michael10001/article/details/24600441
-------------------------------首先定义注释,类似一个接口--------------------------------------------------------------------
@Target(ElementType.METHOD) //此处成为元注解 ,注解的定义需要元注解
@Retention(RetentionPolicy.RUNTIME)
public @interface UseCase { //此处需要注意写法
public int id();
public String description() default "no description";
}
public class PasswordUtils {
@UseCase(id = 47, description =
"Passwords must contain at least one numeric")
public boolean validatePassword(String password) {
return (password.matches("\\w*\\d\\w*"));
}
@UseCase(id = 48)
public String encryptPassword(String password) {
return new StringBuilder(password).reverse().toString();
}
@UseCase(id = 49, description =
"New passwords can’t equal previously used ones")
public boolean checkForNewPassword(
List
return !prevPasswords.contains(password);
}
}
import java.util.*;
public class UseCaseTracker {
public static void
trackUseCases(List
for(Method m : cl.getDeclaredMethods()) {
UseCase uc = m.getAnnotation(UseCase.class);
if(uc != null) {
System.out.println("Found Use Case:" + uc.id() +
" " + uc.description());
useCases.remove(new Integer(uc.id()));
}
}
for(int i : useCases) {
System.out.println("Warning: Missing use case-" + i);
}
}
public static void main(String[] args) {
List
Collections.addAll(useCases, 47, 48, 49, 50);
trackUseCases(useCases, PasswordUtils.class);
}
}
Found Use Case:47 Passwords must contain at least one numeric
Found Use Case:48 no description
Found Use Case:49 New passwords can’t equal previously used ones
Warning: Missing use case-50
上一篇:利用activeX控件在网页里自动登录WIN2003远程桌面并实时控制
下一篇:为应用程序池“XX”提供服务的进程在与 Windows Process Activation Service 通信时出现严重错误
文章标题:java Annotation 自定义实例
文章链接:http://soscw.com/index.php/essay/22211.html