在特定端口和ssl上的eclipse中运行jsp
我使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该有一个名为“服务器”的项目。您的 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/