SpringBoot @Profile
@Profile 可以和 @Bean 一起使用,
@Profile 可以和 @Bean 一起使用, 当配置文件, 例如application.properties等, 添加了下列条目?
spring.profiles.active: profileName
或着
spring.profiles.include: profileName
加注了@Profile("profileName")
和@Bean
的方法就会在启动时被执行, 当然,类要加@Configuration
,甚至@Component
就行,
当然,@Bean
应该配@Configuration
例如
import org.springframework.context.annotation.*;
import org.springframework.stereotype.Component;
@Component
public class ImportProfile {
@Profile("ProfileName")
@Bean
public Object beanMethod666() {
System.out.println("\n\n\n????????????????????"+
"""
\n
当 active 或 include 了 这个方法上面的 @Profile("ProfileName") 中的 ProfileName (区分大小写)
这个方法就会被执行
例如:
spring.profiles.active= ProfileName
或
spring.profiles.include= ProfileName
控制台就会输出这条信息\n
"""
+ "????????????????????????\n\n\n ");
return "hello";
}
}
© 版权声明
文章版权归作者所有,未经允许请勿转载,侵权请联系 admin@trc20.tw 删除。
THE END