Java注解Annotation

需求: 在插入数据库时对字符串进行一个截断插入的操作, 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的子类。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值