我想要一个属性设置,它可以在某些环境中覆盖特定属性。例如,我们默认的 dev JDBC 属性是:
- db.driverClassName=com.mysql.jdbc.Driver
- db.url=jdbc:mysql://localhost:3306/ourdb
- db.username=root
- db.password=
问题是我们的一些开发人员希望在数据库上使用不同的用户名/密码,甚至可能是非本地托管的数据库。我们的 rabbitMQ 配置也是如此,它目前使用类似的 localhost、guest/guest 设置。能够在每个开发人员的基础上覆盖此配置的某些元素的属性将使我们能够将用于构建软件的大部分基础架构/安装要求从本地机器转移到专用服务器上。
我已经建立了一个简单的项目来围绕实现我想要的配置所需的配置,这是我第一次涉足弹簧属性配置的世界,因为到目前为止,属性加载和管理是通过一些自定义完成的代码。这是我的设置:
class Main_PropertyTest {
public static void main(String[] args) {
String environment = System.getenv("APPLICATION_ENVIRONMENT"); // Environment, for example: "dev"
String subEnvironment = System.getenv("APPLICATION_SUB_ENVIRONMENT"); // Developer name, for example: "joe.bloggs"
System.setProperty("spring.profiles.active", environment);
System.setProperty("spring.profiles.sub", subEnvironment);
try(AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext(PropertyTestConfiguration.class)) {
Main_PropertyTest main = context.getBean(Main_PropertyTest.class);
main.printProperty();
}
}
private final String property;
public Main_PropertyTest(String property) {
this.property = property;
}
public void printProperty() {
System.out.println("And the property is: '" + property + "'.");
}
}
还有我的配置:
@Configuration
public class PropertyTestConfiguration {
@Bean
public static PropertySourcesPlaceholderConfigurer primaryPlaceholderConfigurer() {
PropertySourcesPlaceholderConfigurer propertySourcesPlaceholderConfigurer = new PropertySourcesPlaceholderConfigurer();
propertySourcesPlaceholderConfigurer.setLocation(new ClassPathResource(System.getProperty("spring.profiles.active") + ".main.properties"));
return propertySourcesPlaceholderConfigurer;
}
@Bean
public static PropertySourcesPlaceholderConfigurer secondaryPlaceholderConfigurer() {
PropertySourcesPlaceholderConfigurer propertySourcesPlaceholderConfigurer = new PropertySourcesPlaceholderConfigurer();
propertySourcesPlaceholderConfigurer.setLocation(new ClassPathResource(System.getProperty("spring.profiles.sub") + ".main.properties"));
propertySourcesPlaceholderConfigurer.setIgnoreResourceNotFound(true);
propertySourcesPlaceholderConfigurer.setIgnoreResourceNotFound(true);
propertySourcesPlaceholderConfigurer.setOrder(-1);
return propertySourcesPlaceholderConfigurer;
}
@Bean
public Main_PropertyTest main_PropertyTest(@Value("${main.property}") String property) {
Main_PropertyTest main_PropertyTest = new Main_PropertyTest(property);
return main_PropertyTest;
}
}
为了完整起见,我的 dev.main.properties 和 test.main.properties:
main.property=dev
main.property=test
主要问题是我得到一个非法参数异常。据我所知,我所写的应该是这种方法的 javaconfig 等效项:http: //taidevcouk.wordpress.com/2013/07/04/overriding-a-packaged-spring-application-properties-file-通过外部文件/ 不幸的是,我收到以下错误:java.lang.IllegalArgumentException:无法解析字符串值“$ {main.property}”中的占位符“main.property”。请注意,我还需要注意没有子环境的情况,这就是我开始的情况(尽管即使两个文件都存在我也会遇到相同的错误)。如果我删除了设置第二个 propertysourcesplaceholderconfigurer 的 bean,那么一切正常(我的意思是 dev.main.properties 已加载并且“属性是:'dev'。”被打印出来)。
第二个问题是代码看起来不太好,系统的每一层都需要两个 PSPC 设置,以便他们可以访问这些属性。此外,它需要对 System.getProperty() 进行大量手动调用,因为我无法将 ${spring.profiles.active} 传递给 PSPC.setLocation();
注意:我已经尝试过@PropertySources({primaryproperties, secondaryProperties}),但是因为secondaryProperties 不存在而失败。我也尝试过@Autowired Environment 环境;并从中获取属性,但辅助 PSPC 会导致环境无法自动连接......
所以按照这个冗长的解释,我的问题是:
- 这是解决这个问题的正确方法吗?
- 如果是这样,我的配置有什么问题?
- 如何简化配置(如果有的话)?
- 是否有替代机制可以解决我的问题?
感谢您的时间!:)