在特定端口和ssl上的eclipse中运行jsp

发布于 2024-08-25 22:56:26 字数 453 浏览 7 评论 0原文

我使用 Eclipse 3.4 创建了一个动态 Web 项目。我还将我的服务器配置为使用带有 ssl 的端口 8443。如果我启动我的服务器,我可以通过转到它的地址来访问我的 test.jsp

  https://localhost:8443/TestContext/test.jsp

在 eclipse 中,我已经安装了此服务器并将我的项目添加到服务器。如果我运行 test.jsp 它总是启动,因为

  http://localhost:8080/TestContext/test.jsp

我的问题是:如何设置 eclipse 在 https://localhost 上运行它:8443/ 而不是默认的 8080?提前致谢。

I have used Eclipse 3.4 to create a Dynamic Web Project. I have also configured my server to use port 8443 with ssl. If I start my server I can access my test.jsp by going to it's address

  https://localhost:8443/TestContext/test.jsp

In eclipse, I have installed this server and added my project to the server. If I Run test.jsp it always launches as

  http://localhost:8080/TestContext/test.jsp

My question is: How can I set up eclipse to run this on https://localhost:8443/ rather than the default 8080? Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

北音执念 2024-09-01 22:56:26

您应该有一个名为“服务器”的项目。您的 tomcat 应该有其文件夹 - 例如“Tomcat 6.0.20 at localhost-config”。那里有 server.xml,您可以在其中启用 SSL。

当您启用 SSL 时,服务器接受端口 8443 和 8080 上的请求。服务器不是在某个端口上运行 - 它接受多个端口上的连接。因此只需输入 https://localhost:8443/

You should have a project called "Servers". There your tomcat should have its folder - for example "Tomcat 6.0.20 at localhost-config". There is server.xml there, in which you can enable SSL.

When you enable the SSL, the server accepts requests on port 8443 as well as on 8080. The server is not run on a port - it accepts connections on multiple ports. So just type https://localhost:8443/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文