您好,登錄后才能下訂單哦!
如何在SpringBoot環境下使得自定義的注解能夠使用${xxx}表達式,很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學習下,希望你能有所收獲。
相關依賴
<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在方法執行器對方法上的注解進行解析處理,獲取占位符對應的值
@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 ; } }
該類實現了EnvironmentAware 用于獲取Environment對象,該對象能夠獲取當前環境下的所有相關配置信息。同時通過該類的resolvePlaceholders方法能夠解析占位符對應的內容值。
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("自定義注解動態獲取屬性值:{}", sno) ; // todo return sno ; } }
在AOP中將解析后的值已經存入到了ThreadLocal中。
測試
@RestController @RequestMapping("/business") public class BusinessController { @Resource private BusinessService bs ; @GetMapping("/{id}") public Object home(@PathVariable String id) { return bs.invoke(id) ; } }
到此一個自定義注解中支持占位符就完成了,還是非常簡單的。
看完上述內容是否對您有幫助呢?如果還想對相關知識有進一步的了解或閱讀更多相關文章,請關注億速云行業資訊頻道,感謝您對億速云的支持。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。