我有这个方面:
@Aspect
@Component
@Profile("measure")
public class MyAspect {
@Pointcut("@annotation(Measured)")
private pointcutMethod() { }
@Around
public advice() {
...
}
}
我希望能够使用配置文件禁用/启用它。 因此,当我没有指定"衡量"简介,它不起作用。