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>