這篇文章主要介紹了springboot怎么通過spel結(jié)合aop實(shí)現(xiàn)動(dòng)態(tài)傳參的相關(guān)知識(shí),內(nèi)容詳細(xì)易懂,操作簡單快捷,具有一定借鑒價(jià)值,相信大家閱讀完這篇springboot怎么通過spel結(jié)合aop實(shí)現(xiàn)動(dòng)態(tài)傳參文章都會(huì)有所收獲,下面我們一起來看看吧。
成都創(chuàng)新互聯(lián)公司是一家專注網(wǎng)站建設(shè)、網(wǎng)絡(luò)營銷策劃、微信小程序、電子商務(wù)建設(shè)、網(wǎng)絡(luò)推廣、移動(dòng)互聯(lián)開發(fā)、研究、服務(wù)為一體的技術(shù)型公司。公司成立十年以來,已經(jīng)為上千余家銅雕雕塑各業(yè)的企業(yè)公司提供互聯(lián)網(wǎng)服務(wù)?,F(xiàn)在,服務(wù)的上千余家客戶與我們一路同行,見證我們的成長;未來,我們一起分享成功的喜悅。
正式擼代碼之前, 先了解下SpEl (Spring Expression Language) 表達(dá)式, 這是Spring框架中的一個(gè)利器.
Spring通過SpEl能在運(yùn)行時(shí)構(gòu)建復(fù)雜表達(dá)式、存取對(duì)象屬性、對(duì)象方法調(diào)用等等.
舉個(gè)簡單的例子方便理解, 如下
//定義了一個(gè)表達(dá)式 String expressionStr = "1+1"; ExpressionParser parser = new SpelExpressionParser(); Expression expression = parser.parseExpression(expressionStr); Integer val = expression.getValue(Integer.class); System.out.println(expressionStr + "的結(jié)果是:" + val);
通過以上案例, 不難理解, 所謂的SpEl, 本質(zhì)上其實(shí)就是解析表達(dá)式.
簡單了解了SpEl表達(dá)式, 那么接下來我們就直接開始擼代碼.
先引入必要的pom依賴, 其實(shí)只有aop依賴, SpEl本身就被Spring支持, 所以無需額外引入.
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-aop</artifactId> </dependency>
定義一個(gè)SpEl的工具類SpelUtil
public class SpelUtil { /** * 用于SpEL表達(dá)式解析. */ private static final SpelExpressionParser parser = new SpelExpressionParser(); /** * 用于獲取方法參數(shù)定義名字. */ private static final DefaultParameterNameDiscoverer nameDiscoverer = new DefaultParameterNameDiscoverer(); /** * 解析SpEL表達(dá)式 * * @param spELStr * @param joinPoint * @return */ public static String generateKeyBySpEL(String spELStr, ProceedingJoinPoint joinPoint) { // 通過joinPoint獲取被注解方法 MethodSignature methodSignature = (MethodSignature) joinPoint.getSignature(); Method method = methodSignature.getMethod(); // 使用Spring的DefaultParameterNameDiscoverer獲取方法形參名數(shù)組 String[] paramNames = nameDiscoverer.getParameterNames(method); // 解析過后的Spring表達(dá)式對(duì)象 Expression expression = parser.parseExpression(spELStr); // Spring的表達(dá)式上下文對(duì)象 EvaluationContext context = new StandardEvaluationContext(); // 通過joinPoint獲取被注解方法的形參 Object[] args = joinPoint.getArgs(); // 給上下文賦值 for (int i = 0; i < args.length; i++) { context.setVariable(paramNames[i], args[i]); } // 表達(dá)式從上下文中計(jì)算出實(shí)際參數(shù)值 /*如: @annotation(key="#user.name") method(User user) 那么就可以解析出方法形參的某屬性值,return “xiaoming”; */ return expression.getValue(context).toString(); } }
定義一個(gè)帶參注解SpelGetParm
@Target({ElementType.METHOD, ElementType.TYPE}) @Retention(RetentionPolicy.RUNTIME) public @interface SpelGetParm { String parm() default ""; }
定義帶參注解SpelGetParmAop
@Aspect @Slf4j @Component public class SpelGetParmAop { @PostConstruct public void init() { log.info("SpelGetParm init ......"); } /** * 攔截加了SpelGetParm注解的方法請(qǐng)求 * * @param joinPoint * @param spelGetParm * @return * @throws Throwable */ @Around("@annotation(spelGetParm)") public Object beforeInvoce(ProceedingJoinPoint joinPoint, SpelGetParm spelGetParm) throws Throwable { Object result = null; // 方法名 String methodName = joinPoint.getSignature().getName(); //獲取動(dòng)態(tài)參數(shù) String parm = SpelUtil.generateKeyBySpEL(spelGetParm.parm(), joinPoint); log.info("spel獲取動(dòng)態(tài)aop參數(shù): {}", parm); try { log.info("執(zhí)行目標(biāo)方法: {} ==>>開始......", methodName); result = joinPoint.proceed(); log.info("執(zhí)行目標(biāo)方法: {} ==>>結(jié)束......", methodName); // 返回通知 log.info("目標(biāo)方法 " + methodName + " 執(zhí)行結(jié)果 " + result); } finally { } // 后置通知 log.info("目標(biāo)方法 " + methodName + " 結(jié)束"); return result; }
以上已經(jīng)基本實(shí)現(xiàn)了案例的核心功能, 接下來我們使用該注解即可
定義一個(gè)實(shí)體User
@Getter @Setter @NoArgsConstructor @JsonSerialize @JsonInclude(Include.NON_NULL) public class User implements Serializable { private static final long serialVersionUID = -7229987827039544092L; private String name; private Long id; }
我們?cè)赨serController直接使用該帶參注解即可
@CrossOrigin @RestController @RequestMapping("/user") public class UserController { @PostMapping("/param") @SpelGetParm(parm = "#user.name") public R repeat(@RequestBody User user) { return R.success(user); } }
最后請(qǐng)求
可以看出, 切面成功獲取到了實(shí)體的name值“張三”.
關(guān)于“springboot怎么通過spel結(jié)合aop實(shí)現(xiàn)動(dòng)態(tài)傳參”這篇文章的內(nèi)容就介紹到這里,感謝各位的閱讀!相信大家對(duì)“springboot怎么通過spel結(jié)合aop實(shí)現(xiàn)動(dòng)態(tài)傳參”知識(shí)都有一定的了解,大家如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。
網(wǎng)頁名稱:springboot怎么通過spel結(jié)合aop實(shí)現(xiàn)動(dòng)態(tài)傳參
標(biāo)題鏈接:http://aaarwkj.com/article34/gjgjse.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供外貿(mào)網(wǎng)站建設(shè)、響應(yīng)式網(wǎng)站、虛擬主機(jī)、App設(shè)計(jì)、、微信小程序
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)