Can not resolve configuration property \'...
I have no problem accessing my properties through the @Value annotation or through
I had the same problem plus not showing auto completion found out that it works with IntelliJ Ultimate edition and not community version. link
couple of useful steps to take would be:
org.springframework.boot
spring-boot-configuration-processor
true
target/classes/META-INF/spring-configuration-metadata.js to prevent errors.@ConfigurationProperties("name-here") and that you have enabled it by @EnableConfigurationProperties(NameOfTheConfigClass.class)