玩!框架提供了一个非常好的功能,使您能够配置不同的配置集,因此我可以有类似的东西
storage=fs
storage.fs.home.dir=...
storage.fs.home.url=...
...
%at.storage=s3
%at.storage.s3.key=...
%at.storage.s3.secret=...
...
%prod.storage=s3
%prod.storage.s3.key=...
%prod.storage.s3.secret=...
...
默认情况下,应用程序使用 fs(文件系统)存储,如果应用程序使用 --%at
(验收测试)模式启动,则使用 aws s3 作为存储实施,如果应用程序以生产模式--%prod
启动,它也使用 s3 存储,但可以使用不同的 S3 配置。此功能使对应用程序配置文件进行版本控制变得非常容易,在部署到实时服务器或验收测试服务器时无需更新配置文件。
我很好奇有没有人为基于 Spring 框架的应用程序实现某些机制。
像这样尝试一下,在类路径的根目录中创建不同的目录,其中包含不同环境的配置。保留相同的文件名:
.
|____pom.xml
|____src
| |____main
| | |____resources
| | | |____dev
| | | | |____application.properties
| | | |____test
| | | | |____application.properties
| | | |____prod
| | | | |____application.properties
然后在应用程序启动时,传入一个环境变量,该变量指示要使用的环境。例如:
-Denv=prod
根据环境变量配置给定属性文件的加载,使用 util:properties,如下所示:
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:util="http://www.springframework.org/schema/util"
xsi:schemaLocation="
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.0.xsd
http://www.springframework.org/schema/util
http://www.springframework.org/schema/util/spring-util.xsd">
<util:properties id="application" location="classpath:${env}/application.properties"/>
... remaining config here
</beans>
看看 Spring 的个人资料。
在我的应用程序中,我通常有一个default.properties和类似dev.properties的东西,它覆盖了default.properties中的一些值。我用ProfileResourceProvider
启用此功能.