How can I browse my Tomcat localhost from another computer on the network?

前端 未结 10 1826
滥情空心
滥情空心 2020-12-31 01:30

I\'m an IIS guy and know its as simple as just using the http://[computername]/path to webapp.. however, I can\'t seem to figure out how to make this possible for a JSP appl

10条回答
  •  再見小時候
    2020-12-31 02:03

    You need to use the Port of Tomcat which is by default 8080. So you might want to access you localhost on machine A from machine B as http://A:8080/YourProject And Remember Unlike IIS , it is case sensitive.

提交回复
热议问题