当前位置: 代码迷 >> 综合 >> IEDA无法读取**.properties,reports all properties not referenced from outside of the propertie file.
  详细解决方案

IEDA无法读取**.properties,reports all properties not referenced from outside of the propertie file.

热度:73   发布时间:2023-09-28 06:15:04.0

IEDA无法读取application.properties,reports all properties not referenced from outside of the propertie file.

  • 1. 错误问题
  • 2. 网上常说的错误原因
    • 2.1 pom.xml配置不对
    • 2.2 项目结构问题
    • 2.3 idea版本问题

1. 错误问题

在maven项目中整合mybatis+springboot,无法读取application.properties文件。
IEDA无法读取**.properties,reports all properties not referenced from outside of the propertie file.

2. 网上常说的错误原因

2.1 pom.xml配置不对

            <resource><directory>src/main/resources</directory><includes><include>*.xml</include></includes></resource>

利用以上方法自行指定文件存放路径~

但是我的xxx.properties文件均放在src\main\resources下,应该不存在这个问题。

IEDA无法读取**.properties,reports all properties not referenced from outside of the propertie file.

2.2 项目结构问题

我的项目结构不存在问题。src\main\resources文件夹下的log4j.properties可以读到并高亮显示,,唯独application.properties不行!

2.3 idea版本问题

  1. 将项目拷贝至IDEA 2017完美运行。
  2. 我用的是IDEA 2019.

解决办法

IEDA无法读取**.properties,reports all properties not referenced from outside of the propertie file.

IEDA无法读取**.properties,reports all properties not referenced from outside of the propertie file.

完美解决!

  相关解决方案