spring.profiles.active 未生效问题解决

解决spring.profiles.active配置未生效问题

问题解决历程:一开始配置未生效,然后根据网上的描述都配置了个遍,还是没有解决,最终自己发现启动类里面的配置写死了是dev,一直没有按照自己配置的来,我把第4点操作中的active profiles:去除为空之后,就可以了

1. 首先检查application.properties里面的spring.profiles.active配置,等号后面就是你要使用的环境

在这里插入图片描述

2. pom.xml配置是否有profiles

在这里插入图片描述

    <profiles>
        <profile>
            <id>local</id>
            <properties>
                <spring.profiles.active>local</spring.profiles.active>
            </properties>
            <activation>
                <activeByDefault>true</activeByDefault>
            </activation>
        </profile>
        <profile>
            <id>dev</id>
            <properties>
                <spring.profiles.active>dev</spring.profiles.active>
            </properties>
        </profile>
        <profile>
            <id>test</id>
            <properties>
                <spring.profiles.active>test</spring.profiles.active>
            </properties>
        </profile>
        <profile>
            <id>prod</id>
            <properties>
                <spring.profiles.active>prod</spring.profiles.active>
            </properties>
        </profile>
    </profiles>

配置上面的profiles,右侧maven会出现如下结构,勾选你要运行的环境:
在这里插入图片描述

3. pom.xml配置是否有resources

在这里插入图片描述

4. 启动类的配置是否写死了,写死就去除:本博主这里先前是写死的dev,坑坑坑

在这里插入图片描述

如果spring.profiles.active=local起作用了,可以看到运行窗口出现下面的标识:
在这里插入图片描述

Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐