I have my Jhipster config/ApplicationProperties.java class setup and working however it's not clear how to inject a property value into the FeignClient annotation for the url:
@FeignClient(
name="myApi",
url="how do I inject an application.yml property here?",
configuration="MyConfig.class")
Using @Value doesn't work per below:
@FeignClient(
name="myApi",
url=@Value("${application.api.url}"),
configuration="MyConfig.class")
Any thoughts?