org.springframework.util.PropertyPlaceholderHelper.parseStringValue

Could not resolve placeholder ‘app.cassandra.contact.point’ Spring Boot not recognizing application.properties file application.properties dosyanız proje tarafından okunmadğında yukarıdaki hataları alabiliyorsunuz. Projenizin pom dosyasına aşağıdaki kodu eklemeniz bu problemi çözmenie yardımcı olacaktır. <build> <resources> <resource> <directory>resource</directory> <targetPath>${project.build.outputDirectory}</targetPath> <includes> <include>application.properties</include> </includes> </resource> </resources> </build>