I have a very simple Spring Boot app that I\'m trying to get working with some externalised configuration. I\'ve tried to follow the information on the spring boot documenta
You can use Environment Class to get data :
Environment
@Autowired private Environment env; String prop= env.getProperty('some.prop');