如何:Eclipse RAP 配置外部 ip,监听 0.0.0.0
我有一个在某个端口 (8181) 上运行的 RAP 应用程序。我可以从本地 IP:192.168.0.230 访问我的应用程序,但无法从提供商的链接访问我的应用程序。
我的路由器端口已转发...
如何配置我的 RAP 应用程序以侦听 0.0.0.0 接口?
PS:我确定路由器没有问题,
提前谢谢...
I have a RAP application that is running on a certain port (8181). I can access my application from local ip: 192.168.0.230 but I can't access my application from my provider's link.
My router port is forwarded...
How can I configure my RAP application to listen to 0.0.0.0 interface?
P.S: I am sure that there is no problem in the router
Thank you in advance...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这不是您可以在 RAP 中配置的内容,而是可以在 servlet 容器中配置的内容。 Servlet 容器是打开网络套接字的容器。默认配置通常是监听所有接口。
此外,如果您可以通过 192.168.* ip 访问您的应用程序,这意味着您的 servlet 容器实际上侦听此接口,否则您只能在 127.0.0.1 (localhost) 上访问它。所以这似乎是一个网络问题。
This is not something you can configure in RAP, but in your servlet container. The servlet container is the one that opens network sockets. The default configuration is usually to listen to all interfaces.
Besides, if you can access your application over an 192.168.* ip, this means that your servlet container actually listens to this interface, otherwise you could only access it on 127.0.0.1 (localhost). So it seems to be a networking problem.