I have a properties file that I read by spring annotation like this
@Value(\"${platform}\") private String platform;
after I get th
You can't access platform directly in the @Value expression, but you can use Spring Expression Language to accomplish your end goal.
platform
@Value("${platform}") private String platform; @Value("#{'Url.'.concat(${platform}).concat('.ws')}") private String url;