application.properties提示Cannot resolve configuration property 'xxxx'

1 问题描述

在IDEA的Spring Boot工程中的application.properties文件中,如果自定义属性会如下提示:

Cannot resolve configuration property 'xxxx'

application.properties提示Cannot resolve configuration property 'xxxx'_第1张图片

2 解决方式一

这其实是一个警告,可以不用理会,正常运行,

@Value("${}")

可以正常获取到值,最暴力的方法就是关闭这个检查:
application.properties提示Cannot resolve configuration property 'xxxx'_第2张图片
进入设置中的Editor–>Inspection–>Spring–>Spring Boot–>Spring Boot application properties,去掉右边勾选.

3 解决方式二(推荐)

application.properties提示Cannot resolve configuration property 'xxxx'_第3张图片
这里提示Defind Configuration key a,然后按Alt+Shift+Enter后,就会创建一个addtional-spring-configuration-metadata.json的文件:
在这里插入图片描述
这里name是指定属性名字,type是类型,可以加上defaultValue指定默认值:
application.properties提示Cannot resolve configuration property 'xxxx'_第4张图片
这样就不会有警告了:
在这里插入图片描述

你可能感兴趣的:(spring,boot)