Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经在 Eclipse 中使用 Tomcat 7 实现了 Java 动态项目。我可以在 localhost 上运行它,也可以在 localhost 上从客户端连接。现在,我想将其配置为能够从我家庭网络中的其他机器连接。
我该怎么做?
提前致谢?
1)如果您可以从其他机器“ping”您的服务器,那么您应该能够连接到它。
2)通过“Java 动态项目”,我假设您的意思是“网络项目”。
我假设您现在使用“http://localhost:8080/YOUR_URL”在本地连接
3)在另一台机器上试试这个:
a) 从命令行:ping SERVER_NAME
ping SERVER_NAME
b) 从浏览器:http://SERVER_NAME:8080/YOUR_URL
http://SERVER_NAME:8080/YOUR_URL
4)如果连接失败,请确保您的服务器没有防火墙阻止端口 8080: