当我使用命令
时mvn spring-boot:运行-Dspring.profiles.active = web
我的项目正在运行,但未使用@Profile("web")
bean代码,仅使用
bean写的属性
@Profile("default")
如何更改,属性更改为网络个人资料?
@Profile("default")
@Bean
static public PropertySourcesPlaceholderConfigurer defaultPropertySourcesPlaceholderConfigurer() {
PropertySourcesPlaceholderConfigurer p = new PropertySourcesPlaceholderConfigurer();
Resource[] resourceLocations = new Resource[] { new ClassPathResource("job.core.properties") };
p.setLocations(resourceLocations);
return p;
}
@Profile("web")
@Bean
static public PropertySourcesPlaceholderConfigurer prodWebPropertySourcesPlaceholderConfigurer() {
PropertySourcesPlaceholderConfigurer p = new PropertySourcesPlaceholderConfigurer();
Resource[] resourceLocations = new Resource[] {new ClassPathResource("job.core.ris.properties") };
p.setLocations(resourceLocations);
return p;
}
job.core.ris.properties
db.driverClass=com.mysql.jdbc.Driver
db.jdbcUrl=jdbc:mysql://192.168.0.68:3306/job_ris?rewriteBatchedStatements=true&useUnicode=true&characterEncoding=UTF-8
db.user=root
db.password=
job.core.properties
db.driverClass=com.mysql.jdbc.Driver
db.jdbcUrl=jdbc:mysql://192.168.0.68:3306/dev?rewriteBatchedStatements=true&useUnicode=true&characterEncoding=UTF-8
答案 0 :(得分:0)
使用框架而不是反对/围绕它。 Spring Boot有build in support来加载配置文件特定的application.properties
文件。
而不是试图将多个PropertyPlaceholderConfigurer
套入Spring Boot应用程序中。创建包含您的媒体资源的application.properties
和application-web.properties
。
<强> application.properties 强>
db.driverClass=com.mysql.jdbc.Driver
db.jdbcUrl=jdbc:mysql://192.168.0.68:3306/dev?rewriteBatchedStatements=true&useUnicode=true&characterEncoding=UTF-8
<强> application-web.properties 强>
db.jdbcUrl=jdbc:mysql://192.168.0.68:3306/job_ris?rewriteBatchedStatements=true&useUnicode=true&characterEncoding=UTF-8
db.user=root
db.password=
(注意缺少的db.driverClass
您只需要包含不同的属性)。
接下来删除自定义的@Bean
注释方法,让Spring Boot完成繁重的任务。
专家提示:根据媒体资源的名称判断,@Bean
还有自定义DataSource
。您可能希望使用spring.datasource.*
属性而不是使用自定义名称,让Spring Boot创建/管理您的数据源。