我有一个在Tomcat中运行的REST Web应用程序。我可以使用http://localhost:8080/MyApplication/Myresource
访问此RESTful服务。
如何配置Tomcat以便此Web应用程序在其他端口上运行,而其他Web应用程序继续在端口8080或另一个端口上运行?具体来说,我想访问
http://localhost:XXXX/MyApplication/Myresource
和
http://localhost:YYYY/OtherApplication/Resource
答案 0 :(得分:1)
在server.xml
目录中的conf
文件中,有http连接器定义:
<Connector port="8080" protocol="HTTP/1.1"
connectionTimeout="20000"
redirectPort="8443" />
将8080
值更改为您需要的任何其他值并重新启动tomcat。
如果您想在一个端口上运行某些应用程序而在另一个端口上运行其他应用程序,那么您应该查看this question
答案 1 :(得分:1)
ITS简单,只是看到这个图像