briandilley / jsonrpc4j

JSON-RPC for Java
MIT License
1.05k stars 439 forks source link

And new annotation supports creating specially JsonRpcClient. #316

Open yuhaowin opened 1 year ago

yuhaowin commented 1 year ago

about like this.

    @JsonRpcReference(address = "http://localhost:8080")
    private Temperature temperature;

    public Integer demo() {
        return temperature.currentTemperature();
    }