class path resource [resource.properties] cannot be opened because it does not exist
在5-1配置PropertySource遇到了问题。一直显示resource.properties不存在。详情大佬大佬帮忙解决, 非常感谢
在5-1配置PropertySource遇到了问题。一直显示resource.properties不存在。详情大佬大佬帮忙解决, 非常感谢
2021-01-04
看不到你的pom.xml,可能依赖没加么,检查这几个地方看看:
1、手工在src/main/resources目录下是否新建 resource.properties文件,可以直接负责application.properties文件放在同目录下,重命名为resource.properties即可;
2、
@Configuration
……
这些代码是否写正确了。
3、pom.xml中依赖
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId>
<optional>true</optional>
</dependency>
是否加了。
举报