本文主要是介绍class path resource [config.properties] cannot be opened because it does not exist,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
在springboot启动时报错配置文件找不到:但是项目中是有这个配置文件的
出现此问题的,检查你的pom.xml文件增加:
<build>
<filters> <!-- 指定使用的 filter文件 --><filter>src/main/resources/config/${configPath}/config.properties</filter>
</filters><resources><resource><directory>src/main/resources/config/${configPath}</directory><filtering>false</filtering><!-- 是否使用过滤器 --><excludes><exclude>config.properties</exclude></excludes></resource></resources>
</build>
这篇关于class path resource [config.properties] cannot be opened because it does not exist的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!