如何处理工程的配置文件

How to Handle Project Configuration

August 26, 2011

Every web project needs some environment-specific configurations. Databasecredentials, root url, smtp settings, to name a few. It’s a recurring questionon stackoverflow, and I’ve seen a lot of variations on the topic, and here I’lldescribe the one that I think is best.

  • put all such     properties in a .properties file (for example application.properties)
  • have that     application.properties sitting outside the web application. It is not     bundled with the build
  • provide a     command-line option that indicates where that file is located. For example     -Dconfig.location=/home/you/config
  • on     application startup (in a ServletContextListener usually) load the file     and put it in a map. Can be java.util.Properties or a HashMap
  • for spring     users – use <context:property-placeholder-configurer     location="file://${config.location}/application.properties" . Other frameworks will likely have some     mechanism for loading such global properties
  • hold a     skeleton properties file in the SCM repository. It should contain all     properties, but their values are irrelevant – they will change on each     environment
  • the ops team     is likely to benefit from versioning different environment configurations     (production, qa, stage), so a separate /config folder/subproject can be     created and all environment-specific properties can be stored there. When     adding a property developers should go and update all files accordingly
  • properties     that are not dependent on the environment, but are still global for the     project, can be stored within the project (src/main/resources for maven),     and committed to SCM. They can be merged with the external properties on     startup (merged in memory, that is)
  • most of the     externalizable properties can have reasonable defaults – the smtp server     of the company, the database driver, etc. They can be placed in a application-defeault.properties within the project, and the external file can     override them. This is just an option – if you are going to have a file     committed in the repository with those reasonable defaults, and each     environment to use that file as a basis, it’s virtually the same

Developers can easily run their projects that way. Ops can easily deploybuilds on different environments. The build remains environment-agnostic.

 

  • 2
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值