SpringBoot自定义注解属性支持占位符$「x」

开发 前端
本文教你如何在SpringBoot环境下使得自定义的注解能够使用${xxx}表达式。

[[382427]]

 环境:SpringBoot2.3.8.RELEASE + JDK1.8

本文教你如何在SpringBoot环境下使得自定义的注解能够使用${xxx}表达式。

相关依赖

  1. <dependency> 
  2.             <groupId>org.aspectj</groupId> 
  3.             <artifactId>aspectjrt</artifactId> 
  4. </dependency> 
  5. <dependency> 
  6.             <groupId>org.aspectj</groupId> 
  7.             <artifactId>aspectjweaver</artifactId> 
  8.             <scope>runtime</scope> 
  9. </dependency> 

 自定义注解

  1. @Retention(RetentionPolicy.RUNTIME) 
  2. @Target(ElementType.METHOD) 
  3. @Documented 
  4. public @interface Manufactur { 
  5.     String value() default "" ; // 厂商编号 

 AOP

需要AOP在方法执行器对方法上的注解进行解析处理,获取占位符对应的值

  1. @Component 
  2. @Aspect 
  3. public class ManufacturAspect implements EnvironmentAware { 
  4.      
  5.     private static final Logger logger = LoggerFactory.getLogger(ManufacturAspect.class) ; 
  6.      
  7.     private Environment environment; 
  8.      
  9.     @Pointcut("@annotation(com.pack.annotation.Manufactur)"
  10.     private void info() {} 
  11.      
  12.     @Before("info()"
  13.     public void execBefore(JoinPoint jp) { 
  14.         MethodSignature sign = (MethodSignature) jp.getSignature() ; 
  15.         Method method = sign.getMethod() ; 
  16.         Manufactur manu = method.getAnnotation(Manufactur.class) ; 
  17.         String value = manu.value() ; 
  18.         logger.info("获取到注解值:{}", value) ; 
  19.         BusinessService.code.set(this.environment.resolvePlaceholders(value)) ; 
  20.     } 
  21.  
  22.     @Override 
  23.     public void setEnvironment(Environment environment) { 
  24.         this.environment = environment ; 
  25.     } 
  26.      

 该类实现了EnvironmentAware 用于获取Environment对象,该对象能够获取当前环境下的所有相关配置信息。同时通过该类的resolvePlaceholders方法能够解析占位符对应的内容值。

Service中使用

  1. @Service 
  2. public class BusinessService { 
  3.      
  4.     public static ThreadLocal<String> code = new ThreadLocal<String>() ; 
  5.      
  6.     private static Logger logger = LoggerFactory.getLogger(BusinessService.class) ; 
  7.      
  8.     @Manufactur("${manufactur.code}-#{1 + 3}"
  9.     public String invoke(String id) { 
  10.         String sno = code.get() ; 
  11.         logger.info("自定义注解动态获取属性值:{}", sno) ; 
  12.         // todo 
  13.         return sno ; 
  14.     } 
  15.      

 在AOP中将解析后的值已经存入到了ThreadLocal中。

测试

  1. @RestController 
  2. @RequestMapping("/business"
  3. public class BusinessController { 
  4.      
  5.     @Resource 
  6.     private BusinessService bs ; 
  7.      
  8.     @GetMapping("/{id}"
  9.     public Object home(@PathVariable String id) { 
  10.         return bs.invoke(id) ; 
  11.     } 
  12.      

 

到此一个自定义注解中支持占位符就完成了,还是非常简单的。

 

责任编辑:姜华 来源: 今日头条
相关推荐

2023-10-11 07:57:23

springboot微服务

2023-10-09 07:37:01

2024-07-02 11:42:53

SpringRedis自定义

2024-10-09 10:46:41

springboot缓存redis

2013-04-01 14:35:10

Android开发Android自定义x

2024-10-14 17:18:27

2022-09-21 14:42:03

JSProps属性

2023-10-24 13:48:50

自定义注解举值验证

2017-03-27 16:50:26

windowsedge微软

2021-12-30 12:30:01

Java注解编译器

2022-09-13 09:02:19

SpringBootStarter机制

2011-08-09 17:16:56

CoreAnimati动画

2009-08-06 17:13:56

ASP.NET自定义控

2009-08-04 13:35:16

ASP.NET自定义样

2017-08-03 17:00:54

Springmvc任务执行器

2011-03-17 09:45:01

Spring

2023-07-03 08:29:11

BannerSpringBoot

2022-11-01 11:15:56

接口策略模式

2020-11-25 11:20:44

Spring注解Java

2022-02-17 07:10:39

Nest自定义注解
点赞
收藏

51CTO技术栈公众号