Could not resolve Spring property placeholder

前端 未结 7 2416
有刺的猬
有刺的猬 2020-11-27 15:13

I have my config:





        
7条回答
  •  余生分开走
    2020-11-27 15:26

    the following property must be added in the gradle.build file

    processResources {
        filesMatching("**/*.properties") {
            expand project.properties
        }
    }
    
    

    Additionally, if working with Intellij, the project must be re-imported.

提交回复
热议问题