溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

如何在SpringBoot環(huán)境下使得自定義的注解能夠使用${xxx}表達式

發(fā)布時間:2021-09-29 15:32:34 來源:億速云 閱讀:117 作者:柒染 欄目:web開發(fā)

如何在SpringBoot環(huán)境下使得自定義的注解能夠使用${xxx}表達式,很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學(xué)習(xí)下,希望你能有所收獲。

相關(guān)依賴

<dependency>             <groupId>org.aspectj</groupId>             <artifactId>aspectjrt</artifactId> </dependency> <dependency>             <groupId>org.aspectj</groupId>             <artifactId>aspectjweaver</artifactId>             <scope>runtime</scope> </dependency>

自定義注解

@Retention(RetentionPolicy.RUNTIME) @Target(ElementType.METHOD) @Documented public @interface Manufactur {     String value() default "" ; // 廠商編號 }

AOP

需要AOP在方法執(zhí)行器對方法上的注解進行解析處理,獲取占位符對應(yīng)的值

@Component @Aspect public class ManufacturAspect implements EnvironmentAware {          private static final Logger logger = LoggerFactory.getLogger(ManufacturAspect.class) ;          private Environment environment;          @Pointcut("@annotation(com.pack.annotation.Manufactur)")     private void info() {}          @Before("info()")     public void execBefore(JoinPoint jp) {         MethodSignature sign = (MethodSignature) jp.getSignature() ;         Method method = sign.getMethod() ;         Manufactur manu = method.getAnnotation(Manufactur.class) ;         String value = manu.value() ;         logger.info("獲取到注解值:{}", value) ;         BusinessService.code.set(this.environment.resolvePlaceholders(value)) ;     }      @Override     public void setEnvironment(Environment environment) {         this.environment = environment ;     }      }

該類實現(xiàn)了EnvironmentAware  用于獲取Environment對象,該對象能夠獲取當(dāng)前環(huán)境下的所有相關(guān)配置信息。同時通過該類的resolvePlaceholders方法能夠解析占位符對應(yīng)的內(nèi)容值。

Service中使用

@Service public class BusinessService {          public static ThreadLocal<String> code = new ThreadLocal<String>() ;          private static Logger logger = LoggerFactory.getLogger(BusinessService.class) ;          @Manufactur("${manufactur.code}-#{1 + 3}")     public String invoke(String id) {         String sno = code.get() ;         logger.info("自定義注解動態(tài)獲取屬性值:{}", sno) ;         // todo         return sno ;     }      }

在AOP中將解析后的值已經(jīng)存入到了ThreadLocal中。

測試

@RestController @RequestMapping("/business") public class BusinessController {          @Resource     private BusinessService bs ;          @GetMapping("/{id}")     public Object home(@PathVariable String id) {         return bs.invoke(id) ;     }      }

 如何在SpringBoot環(huán)境下使得自定義的注解能夠使用${xxx}表達式

到此一個自定義注解中支持占位符就完成了,還是非常簡單的。

看完上述內(nèi)容是否對您有幫助呢?如果還想對相關(guān)知識有進一步的了解或閱讀更多相關(guān)文章,請關(guān)注億速云行業(yè)資訊頻道,感謝您對億速云的支持。

向AI問一下細節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI