how to access custom annotation values in spring aspect
问题 I am trying to access the custom annotation values from jointCut. But I couldn't find a way. My sample code : @ComponentValidation(input1="input1", typeOfRule="validation", logger=Log.EXCEPTION) public boolean validator(Map<String,String> mapStr) { //blah blah } Trying to access @Aspect class. But, i didnt see any scope to access values. Way i am trying to access is below code CodeSignature codeSignature = (CodeSignature) joinPoint.getSignature(); String[] names = codeSignature