在不同端口上运行tomcat中的不同webapps

时间:2014-10-30 08:51:29

标签: java tomcat port restlet configure

我有一个在Tomcat中运行的REST Web应用程序。我可以使用http://localhost:8080/MyApplication/Myresource访问此RESTful服务。

如何配置Tomcat以便此Web应用程序在其他端口上运行,而其他Web应用程序继续在端口8080或另一个端口上运行?具体来说,我想访问

http://localhost:XXXX/MyApplication/Myresource

http://localhost:YYYY/OtherApplication/Resource

2 个答案:

答案 0 :(得分:1)

server.xml目录中的conf文件中,有http连接器定义:

<Connector port="8080" protocol="HTTP/1.1"
           connectionTimeout="20000"
           redirectPort="8443" />

8080值更改为您需要的任何其他值并重新启动tomcat。

如果您想在一个端口上运行某些应用程序而在另一个端口上运行其他应用程序,那么您应该查看this question

答案 1 :(得分:1)

ITS简单,只是看到这个图像 enter image description here