我在Play中看到了! 2.0有Http.Context.current() http://www.playframework.org/documentation/api/2.0/java/play/mvc/Http.Context.html#current()
但是在Play中! 1.2.4如何获取当前HTTP请求的IP地址?
感谢。
答案 0 :(得分:19)
如果你在控制器内,你可以
request.remoteAddress;
否则,你需要做
Http.Request.current.get().remoteAddress;