根据环境自动指定Spring配置文件

时间:2019-04-15 18:38:27

标签: java spring

在Spring xml conf文件中,我希望在生产环境中进行一些配置,而在非生产环境中进行其他配置,为此我添加了以下内容

<beans profile="prod">
some code

<beans profile="!non-prod">
some code

我现在想要的只是根据运行应用程序的服务器的环境(无论是Prod还是非Prod)来获得正确的配置文件,您知道这怎么可能吗?

0 个答案:

没有答案