如何使用 Maven 型材设置弹簧活动型材
我有一个使用maven作为构建工具的应用程序。
我正在使用maven配置文件从不同的配置文件设置不同的属性。
我想做的是,maven中的所有活动配置文件也将移植到弹簧活动配置文件中,以便我可以在bean签名()中引用它们。但我不知道该怎么做。@profile
例如:考虑以下 maven 设置
<profiles>
<profile>
<id>profile1</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<properties>
</properties>
</profile>
<profile>
<id>profile2</id>
<properties>
</properties>
</profile>
<profile>
<id>development</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<properties>
</properties>
</profile>
<profile>
<id>production</id>
<properties>
</properties>
</profile>
</profiles>
假设我运行maven,并指定我希望弹簧具有的任何其他配置文件并作为活动配置文件。profile1
development