标签: spring maven annotations
这里是我的自定义注释
@interface IcustomAnnotation{ String getCode(); } class myClass{ @IcustomAnnotation(getCode="SomeData") public String setID(String ID){ return ID } }
,想要使用setID(),getCode应该包含由getCode生成的随机数据
setID()
getCode
SecureRandom
怎么办?