方法级的弹簧轮廓?
2022-09-01 00:23:44
我想介绍一些仅在开发过程中执行的方法。
我想我可能会在这里使用注释?但是,如何在类级别应用此注释,以便仅在属性中配置特定配置文件时才调用此方法?Spring @Profile
spring.profiles.active=dev
将以下内容作为伪代码。如何做到这一点?
class MyService {
void run() {
log();
}
@Profile("dev")
void log() {
//only during dev
}
}