spring配置文件中可以配置多套不同環境配置,如下:
<beans xml.....> <beans profile="dev"> </beans> <beans profile="test"> </beans> </beans>集成Web.xml:設置相應的環境標識來應用配置。
<context-param> <param-name>Spring.profile.name</param-name> <param-value>dev</param-value> </context-param>