Tomcat上的手动部署
:访问路径如果必须要加WebRoot才能访问的解决方法
如题必须这样才能访问的情况
http://localhost:8080/你的项目/WebRoot/index.jsp
解决办法:
①、 在conf/server.xml中的</host>前加入<Context path="/myjsp" docBase="D:\java \apache-tomcat-5.5.27\webapps\myjsp\WebRoot" reloadable="true"/>
其中/myjsp 是你的工程 ;D:\java \apache-tomcat-5.5.27\webapps\myjsp\WebRoot 是你的工程的WebRoot所在的绝对路径
②、修改 web.xml中的默认首页为index.jsp(文件的最后几行)加入
<welcome-file-list>
<welcome-file>index.html</welcome-file>
<welcome-file>index.htm</welcome-file>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
保存 重启tomcat 现在访问http://localhost:8080/你的项目 , 就能访问了