原因分析
server.xml中的配置
<Host name="localhost" appBase="webapps" unpackWARs="true" autoDeploy="true" xmlValidation="false" xmlNamespaceAware="false"> <Context path="" docBase="ldgb" reloadable="true"/>
这样的配置,tomcat 首先会加载 appBase指定的文件夹中的项目,即webapps中的所有项目,加载完成之后,读到<Context /> 中的配置,又加载了一边ldgb的项目,因此tomcat 里 webapps下的ldgb加载了两次。
我的解决方法是
删除server.xml <context />的配置, 然后在webapps 下修改ROOT 的 index.jsp 文件,让该文件重定向到自己的ldgb目录。 这样做,在访问tomcat首页的时候就会默认跳转到 自己的ldgb项目。而且也避免了tomcat加载两次的问题。
网上的另外一中解决方法,ldgb移除 webapps,然后配置<context /> 这样在chrome下可以正常使用,但是在ie 8下貌似会出现路径错误
参考文章:http://501565246-qq-com.iteye.com/blog/1968761
http://showlike.iteye.com/blog/800978
原文地址:http://blog.csdn.net/ch717828/article/details/43156187