springboot项目中application.properties无法变成小树叶问题解决
1.检查我们的resources目录的状态,看看是不是处在普通文件夹的状态,如果是的话,我们需要重新mark一下
右键点击文件夹,选择mark directory as → resources root
此时我们发现配置文件变成了小树叶
2.如果执行了上述方法还是不行的话,可以尝试重新指定配置文件,如下图所示的步骤
3.如果用了所有的方法都不行的话,可能与我们pom文件的配置有关系,大概率是<build></build>配置中有一些错误,可以尝试选择性删除,一步步尝试是哪一部分的错误,观察配置文件是否能恢复到小树叶的状态
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>1.4.2.RELEASE</version>
<configuration>
<excludes>
<exclude>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
<resources>
<resource>
<!--源文件位置-->
<directory>src/main/webapp</directory>
<!--指定编译到META-INF/resources,该目录定死的不要随便写-->
<targetPath>META-INF/resources</targetPath>
<!--指定要把哪些文件编译进去,**表示webapp目录及子目录,*.*表示所有文件-->
<includes>
<include>**/*.*</include>
</includes>
</resource>
<resource>
<directory>src/main/resources</directory>
<includes>
<include>**/*.*</include>
</includes>
<filtering>false</filtering>
</resource>
</resources>
</build>
————————————————
版权声明:本文为CSDN博主「爱吃biangbiang面」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/weixin_44680802/article/details/132700044