79460020

Date: 2025-02-22 17:48:54
Score: 3
Natty:
Report link
@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?

Reasons:
  • Blacklisted phrase (1): is there any
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Tan Xiu Haw