Suppose you have the below application.properties file:
service.external.dev=http://some-url.com/demo
And you want to fetch the above property in your java file, then you only need to have below code. Thats all.
@Value("${service.external.dev}") private String service;