In my web application I have to send email to set of predefined users like finance@xyz.com, so I wish to add that to a .properties file and access it...
I want to access values provided in application.properties, e.g.: logging.level.org.springframework.web: DEBUG logging.level.org.hibernate: ERROR logging.file=${HOME}/application.log userBucket.path=${HOME}/bucket I want to access userBucket.path in my main program in a Spring Boot application....