需求: 在插入数据库时对字符串进行一个截断插入的操作, Demo采用注解实现截断字符串效果
定义一个TruncatedStr 注解,value表明允许的字符串大小, 作用在属性上
@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.FIELD})
public @interface TruncatedStr {
int value();
}
定义一个Band类
public class Band {
@TruncatedStr(value = 11)
public String name = "Penicillinddddddd";
@TruncatedStr(value = 28)
public String song = "A Rainy night in Manchesterddddddddddddddd";
@TruncatedStr(value = 25)
public String album = "Warmth Embrace the worlddddddddddddddd";
}
AnnotationDemo
public class AnnotationDemo {
public static void main(String[] args) {
Band band = new Band();
Class bandClass = Band.class;
for (Field field : bandClass.getDeclaredFields()){
TruncatedStr annotation = (TruncatedStr)field.getAnnotation(TruncatedStr.class);
if (annotation != null){
try {
field.setAccessible(true);
System.out.printf("%s: %s%n", field.getName(),
StringUtils.substring((String)field.get(band), 0, annotation.value()-1));
} catch (IllegalAccessException e) {
e.printStackTrace();
}
}
}
}
}
注解类会被@interface标记
@Target 用于描述注解的使用范围
@Retention 用于描述注解的生命周期
@Documented 用于描述其它类型的annotation应该被作为被标注的程序成员的公共API,因此可以被例如javadoc此类的工具文档化。
@Inherited 用于描述某个被标注的类型是可被继承的。如果一个使用了@Inherited修饰的annotation类型被用于一个class,则这个annotation将被用于该class的子类。