欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

maven多环境配置文件

程序员文章站 2024-01-16 23:22:04
...

1、首先在项目中添加多环境配置文件,并设置将目录设置为资源文件夹:

maven多环境配置文件maven多环境配置文件

2、首先在pom文件中添加一下配置:

<profiles>
        <profile>
        	<!-- 山东联通测试环境 -->
            <id>sd</id>
            <properties>
                <activatedProperties>sd</activatedProperties>
            </properties>
            <build>
                <resources>
                    <resource>
                        <directory>src/main/resources-env/sd</directory>
                    </resource>
                    <resource>
                        <directory>src/main/resources</directory>
                    </resource>
                </resources>
            </build>
        </profile>
        <profile>
        	<!-- 本地环境 -->
            <id>local</id>
            <properties>
                <activatedProperties>local</activatedProperties>
            </properties>
            <build>
                <resources>
                    <resource>
                        <directory>src/main/resources-env/local</directory>
                    </resource>
                    <resource>
                        <directory>src/main/resources</directory>
                    </resource>
                </resources>
            </build>
        </profile>
  </profiles>

3、切换配置文件

鼠标选中项目,点击右键。选择maven>Select Maven Profiles,如下图所示

maven多环境配置文件

然后选择需要的配置文件:

maven多环境配置文件

4、使配置生效:选中项目,点击eclipse工具栏Project>clean。即可是配置生效,否则还是选来的配置。

maven多环境配置文件

相关标签: Java SpringBoot