@Service
public class HelloService {
private static final Logger log = LoggerFactory.getLogger(HelloService.class);
@GrpcClient("tmaccount")
private SimpleGrpc.SimpleBlockingStub simpleStub;
public String sendMessage(String name) {
HelloRequest request = HelloRequest.newBuilder().setName(name).build();
HelloReply response = simpleStub.sayHello(request);
return response.getMessage();
}
}
I also got the same issue, however, I do not have custom AutoConfigurationFilter. Not sure is there any other solutions out there?