查找Netty HttpRequest的远程地址

时间:2018-08-19 10:42:09

标签: jax-rs netty

我正在使用netty,并尝试定义一些映射using this library。 但是我不知道如何从HttpRequest获取用户的远程地址。

这是示例代码:

public class TestHandler extends AbstractHttpHandler {
@Path("/ping")
@GET
public void testGet(HttpRequest httpRequest, HttpResponder responder) {
    // remote address?
    responder.sendString(HttpResponseStatus.OK, "OK");
}

}

1 个答案:

答案 0 :(得分:0)

我无法告诉您您正在使用的库,但是通常您会使用channel.remoteAddress()来获取远程对等方的地址。