当前位置: 代码迷 >> Web前端 >> tomcat不必项目名即可访问该项目配置
  详细解决方案

tomcat不必项目名即可访问该项目配置

热度:107   发布时间:2012-09-07 10:38:15.0
tomcat无需项目名即可访问该项目配置
      <Host name="localhost"  appBase="webapps"
            unpackWARs="true" autoDeploy="true"
            xmlValidation="false" xmlNamespaceAware="false">

			<Context path="" docBase="/twithandSite"/>

      </Host>


由于path="",所以项目中
	String path = request.getContextPath();
	String basePath = request.getScheme() + "://"
			+ request.getServerName() + ":" + request.getServerPort();
	request.setAttribute("base", basePath);

得到的 request.getContextPath()=null;

访问地址:从http://192.168.0.27:8080/twithandSite变为:ttp://192.168.0.27:8080



.
  相关解决方案