servletContext.getContextPath()不存在

    这个问题是由于项目中没有加载servlet-api的2.5的包,引入以后问题就解决了。maven配置如下:

<dependency>
  <groupId>javax.servlet</groupId>
  <artifactId>servlet-api</artifactId>
  <version>2.5</version>
 </dependency>

你可能感兴趣的:(servletContext.getContextPath()不存在)