读书人

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

发布时间: 2012-09-07 10:38:15 作者: rapoo

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



.

读书人网 >Web前端

热点推荐