So im trying to use the @client annotation when making external calls..
@Client("/api/external/call")
@Header(name = ACCEPT, value = "application/json")
public interface ExternalCall{
@Get
MyResponse Call();
}
now im not sure should the @Client be like @Client("http://host") and have the @Get("/api/external/call")
I both but whenever i try to run the app i get the following error
Unexpected error occurred: All possible Introduction advise exhausted and no implementation found for method: MyResponse Call() io.micronaut.aop.exceptions.UnimplementedAdviceException: All possible Introduction advise exhausted and no implementation found for method: MyResponse Call()
Not sure why this is...