Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to realize the section of annotations by springboot

2025-03-31 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/02 Report--

This article introduces the relevant knowledge of "how to realize the section of annotations in springboot". In the operation of actual cases, many people will encounter such a dilemma, so let the editor lead you to learn how to deal with these situations. I hope you can read it carefully and be able to achieve something!

The case of realizing the section of the annotation:

(1) define an annotation @ Target (ElementType.METHOD) @ Retention (RetentionPolicy.RUNTIME) public @ interface MyAnnotation {String getValues () default "test annotation";} @ Target (ElementType.METHOD)

Indicates that the annotation acts on the method (type for class, field for member variables)

@ Retention (RetentionPolicy.RUNTIME)

Indicates the scope of the annotation, which needs to be recognized at run time, so it is RUNTIME (SOURCE means at the source level, that is, the annotation is not visible when compiled to .class, while CLASS can, but not at runtime)

(2) compiling the section of the annotation

(only record the execution time and printing method, you can implement other logic)

@ Aspect@Component@Slf4jpublic class MyAspect {/ / value can also be written as value = "(execution (* com.sj..* (..)) & & @ annotation (zkDistributeLock)" @ Around (value = "@ annotation (myAnnotation)", argNames = "proceedingJoinPoint, myAnnotation") public Object processTest (ProceedingJoinPoint proceedingJoinPoint, MyAnnotation myAnnotation) throws Throwable {long beginTime = System.currentTimeMillis (); / / get the method parameter Object [] args = proceedingJoinPoint.getArgs () / / execution method Object res = proceedingJoinPoint.proceed (args); long time = System.currentTimeMillis ()-beginTime; MethodSignature signature = (MethodSignature) proceedingJoinPoint.getSignature (); String className = proceedingJoinPoint.getTarget (). GetClass (). GetName (); String methodName = signature.getName (); log.info ("values on comments: {}", myAnnotation.getValues ()) Log.info ("execution time: {}", time); log.info ("execution classes and methods: {} {}", className, methodName); return res;}} (3) Test @ GetMapping ("/ go") @ MyAnnotation (getValues = "success") public String test1 () {return "hello world";}

Execution result:

Value on the note: success

Execution time: 8

Execute classes and methods: com.***.TestController test1

This is the end of the content of "how to achieve the aspect of annotations in springboot". Thank you for your reading. If you want to know more about the industry, you can follow the website, the editor will output more high-quality practical articles for you!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report