码迷,mamicode.com
首页 > 其他好文 > 详细

tomcat服务器 去掉端口8080 以及项目名 直接使用IP地址访问

时间:2016-10-23 18:14:56      阅读:354      评论:0      收藏:0      [点我收藏+]

标签:load   file   space   lis   app   tom   toc   打开   ase   

 
>>>  先在web.xml中设置默认页面
<welcome-file-list>
<welcome-file>/login.jsp</welcome-file>
</welcome-file-list>
>>> 再在tomcat安装目录中的conf文件夹中打开server.xml 进行如下设置
<Connector port="80" protocol="HTTP/1.1" 
               connectionTimeout="20000" 
               redirectPort="8443" />
 
 <Host name="localhost"  appBase="webapps"
            unpackWARs="true" autoDeploy="true"
            xmlValidation="false" xmlNamespaceAware="false">
 
        <Context path="" docBase="项目名" reloadable="true" />

 

 
注意:若使用eclipse , 现将eclipse中部署的server打开 执行以下修改 将项目部署到tomcat
[修改前eclipse都是将项目部署到eclipse内部]
 技术分享

 

 

设置好后  成功访问

技术分享

 

tomcat服务器 去掉端口8080 以及项目名 直接使用IP地址访问

标签:load   file   space   lis   app   tom   toc   打开   ase   

原文地址:http://www.cnblogs.com/jiaopaner/p/5990181.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!