当前位置:   article > 正文

class path resource [config.properties] cannot be opened because it does not exist

class path resource [config.properties] cannot be opened because it does not

在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>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/黑客灵魂/article/detail/898671
推荐阅读
相关标签
  

闽ICP备14008679号