bl双性强迫侵犯h_国产在线观看人成激情视频_蜜芽188_被诱拐的少孩全彩啪啪漫画

springboot怎么通過spel結合aop實現動態傳參

這篇文章主要介紹了springboot怎么通過spel結合aop實現動態傳參的相關知識,內容詳細易懂,操作簡單快捷,具有一定借鑒價值,相信大家閱讀完這篇springboot怎么通過spel結合aop實現動態傳參文章都會有所收獲,下面我們一起來看看吧。

成都創新互聯公司是一家專注網站建設、網絡營銷策劃、微信小程序、電子商務建設、網絡推廣、移動互聯開發、研究、服務為一體的技術型公司。公司成立十年以來,已經為上千余家銅雕雕塑各業的企業公司提供互聯網服務。現在,服務的上千余家客戶與我們一路同行,見證我們的成長;未來,我們一起分享成功的喜悅。

SpEl表達式簡介

正式擼代碼之前, 先了解下SpEl (Spring Expression Language) 表達式, 這是Spring框架中的一個利器.

Spring通過SpEl能在運行時構建復雜表達式、存取對象屬性、對象方法調用等等.

舉個簡單的例子方便理解, 如下

//定義了一個表達式
String expressionStr = "1+1";
ExpressionParser parser = new SpelExpressionParser();
Expression expression = parser.parseExpression(expressionStr);
Integer val = expression.getValue(Integer.class);
System.out.println(expressionStr + "的結果是:" + val);

通過以上案例, 不難理解, 所謂的SpEl, 本質上其實就是解析表達式.

實例: SpEl結合AOP動態傳參

簡單了解了SpEl表達式, 那么接下來我們就直接開始擼代碼.

先引入必要的pom依賴, 其實只有aop依賴, SpEl本身就被Spring支持, 所以無需額外引入.

<dependency>
          <groupId>org.springframework.boot</groupId>
          <artifactId>spring-boot-starter-aop</artifactId>
</dependency>

定義一個SpEl的工具類SpelUtil

public class SpelUtil {
    /**
     * 用于SpEL表達式解析.
     */
    private static final SpelExpressionParser parser = new SpelExpressionParser();

    /**
     * 用于獲取方法參數定義名字.
     */
    private static final DefaultParameterNameDiscoverer nameDiscoverer = new DefaultParameterNameDiscoverer();

    /**
     * 解析SpEL表達式
     *
     * @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獲取方法形參名數組
        String[] paramNames = nameDiscoverer.getParameterNames(method);
        // 解析過后的Spring表達式對象
        Expression expression = parser.parseExpression(spELStr);
        // Spring的表達式上下文對象
        EvaluationContext context = new StandardEvaluationContext();
        // 通過joinPoint獲取被注解方法的形參
        Object[] args = joinPoint.getArgs();
        // 給上下文賦值
        for (int i = 0; i < args.length; i++) {
            context.setVariable(paramNames[i], args[i]);
        }
        // 表達式從上下文中計算出實際參數值
        /*如:
            @annotation(key="#user.name")
            method(User user)
             那么就可以解析出方法形參的某屬性值,return “xiaoming”;
          */
        return expression.getValue(context).toString();
    }
}

定義一個帶參注解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注解的方法請求
     *
     * @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();
        //獲取動態參數
        String parm = SpelUtil.generateKeyBySpEL(spelGetParm.parm(), joinPoint);
        log.info("spel獲取動態aop參數: {}", parm);
        try {
            log.info("執行目標方法: {} ==>>開始......", methodName);
            result = joinPoint.proceed();
            log.info("執行目標方法: {} ==>>結束......", methodName);
            // 返回通知
            log.info("目標方法 " + methodName + " 執行結果 " + result);
        } finally {

        }
        // 后置通知
        log.info("目標方法 " + methodName + " 結束");
        return result;
    }

以上已經基本實現了案例的核心功能, 接下來我們使用該注解即可

定義一個實體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;

}

我們在UserController直接使用該帶參注解即可

@CrossOrigin
@RestController
@RequestMapping("/user")
public class UserController {
    @PostMapping("/param")
    @SpelGetParm(parm = "#user.name")
    public R repeat(@RequestBody User user) {
        return R.success(user);
    }
}

最后請求

springboot怎么通過spel結合aop實現動態傳參

springboot怎么通過spel結合aop實現動態傳參

可以看出, 切面成功獲取到了實體的name值“張三”.

關于“springboot怎么通過spel結合aop實現動態傳參”這篇文章的內容就介紹到這里,感謝各位的閱讀!相信大家對“springboot怎么通過spel結合aop實現動態傳參”知識都有一定的了解,大家如果還想學習更多知識,歡迎關注創新互聯行業資訊頻道。

網頁名稱:springboot怎么通過spel結合aop實現動態傳參
標題鏈接:http://vcdvsql.cn/article34/gjgjse.html

成都網站建設公司_創新互聯,為您提供外貿網站建設響應式網站虛擬主機App設計微信小程序

廣告

聲明:本網站發布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網站立場,如需處理請聯系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經允許不得轉載,或轉載時需注明來源: 創新互聯

成都網站建設公司