注解EL表达式获取,入参的数据

import org.aspectj.lang.ProceedingJoinPoint;
import org.aspectj.lang.annotation.Around;
import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.Pointcut;
import org.aspectj.lang.reflect.MethodSignature;
import org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint;
import org.springframework.core.LocalVariableTableParameterNameDiscoverer;
import org.springframework.expression.ExpressionParser;
import org.springframework.expression.spel.standard.SpelExpressionParser;
import org.springframework.expression.spel.support.StandardEvaluationContext;

import java.lang.reflect.Method;

假设 通过@Xxxx注解的value的el表达式获取入参user的info的name值

@Xxxx(value="'p_lock:'+#user.info.name")

public Sting t1(User user){

}

@Aspect
public class Test {
    private final ExpressionParser parser = new SpelExpressionParser();
    private final LocalVariableTableParameterNameDiscoverer discoverer = new LocalVariableTableParameterNameDiscoverer();

    @Pointcut("@@annotation(coo.huawei.Knowledge.解析el表达式.Xxxx)")
    private void testPoint(){};
    
    @Around("testPoint()")
    public Object xxx(ProceedingJoinPoint point) throws Throwable {
        String expr="'p_lock:'+#user.info.name";

        Method method = ((MethodSignature) point.getSignature()).getMethod();
       // T annotation = method.getAnnotation(Xxx.class);
        Object[] args = point.getArgs();
        parse(expr,method,args);

        return point.proceed();
    }

    /*
    * 解析el表达式
    * @Param expr #{type}.#{#usr.name}
    * */
    private String parse(String expr, Method method, Object[] args) {

        String[] parameterNames = discoverer.getParameterNames(method);
        StandardEvaluationContext context = new StandardEvaluationContext();

        for (int i = 0; i < parameterNames.length; i++) {
            context.setVariable(parameterNames[i],args[i]);
        }
        return parser.parseExpression(expr).getValue(context,String.class);
    }
}
Spring Boot 中,为了在运行时通过自定义注解动态切换数据源,可以利用 Expression Language (EL) 表达式结合 Spring 的 `@Profile` 注解。首先,你需要创建两个或更多的数据源配置,比如 `dataSourceA` 和 `dataSourceB`。然后,在应用上下文中为每个数据源配置一个 profile,例如: ```java @Configuration @Profile("dev") public class DevDataSourceConfig { @Bean(name = "primaryDataSource") public DataSource devDataSource() { // 配置开发环境的数据源... } } @Configuration @Profile("prod") public class ProdDataSourceConfig { @Bean(name = "primaryDataSource") public DataSource prodDataSource() { // 配置生产环境的数据源... } } ``` 接下来,你可以创建一个自定义注解,如 `@DataSourceSwitch`,并在需要切换数据源的地方使用 EL 表达式: ```java import org.springframework.context.annotation.Profile; import org.springframework.stereotype.Component; @Component @Profile("#{@environment.getProperty('spring.datasource.active') == 'dev'} ? 'devDataSource' : 'prodDataSource'") public class MyService { @Autowired private DataSource dataSource; // 这里的数据源会根据 EL 表达式的值自动注入对应的数据源 // ... } ``` 在这个例子中,`#{...}` 是 EL 表达式语法,`@environment.getProperty('spring.datasource.active')` 获取的是应用环境中 `spring.datasource.active` 属性的值,它通常由外部配置管理工具设置。如果属性值为 `'dev'`,则使用 `devDataSource`;否则,使用 `prodDataSource`。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值