在 JBoss Web 服务中获取 IP 地址
我开发了一个只有方法的java类,并使用JBossWS将其转变为Web服务(JBOSS)。我想获取发起请求的客户端的 IP 地址。 (我没有使用jsp)
public String getMyIP() {
//get IP from client from current request
// return IP as String
}
谢谢!
I developed a java class with an only method and turned into web service (JBOSS) using JBossWS. I would like to get the IP address of the client who started the request. (I'm not using jsp)
public String getMyIP() {
//get IP from client from current request
// return IP as String
}
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
解决了!
首先在类中设置此资源:
然后在您的类上使用此代码:
Solved!
First set this resource in the class:
Then use this code on your class: