`
Hermosa_Young
  • 浏览: 254056 次
  • 来自: 上海
社区版块
存档分类
最新评论

The method getContextPath() from the type HttpServletRequest refers to the miss

    博客分类:
  • Java
阅读更多

运行程序报错

 

提示如下:The method getContextPath() from the type HttpServletRequest refers to the missing type

 


 解决方法:

 

1 右击该项目 - Build Path - Configure Build Path , 在 Libraries 选项下,会发现有个出错的jre Libraries,将其Remove掉。


 

2 然后右击该项目 - Build Path - Add Library, 选择JRE System Library,选择Workspace defaulr JRE(jdk1.6)(此前JDK已成功安装并配置好), 然后 Finish 。



参考文章:http://blog.csdn.net/home_zhang/article/details/8548560

  • 大小: 36.1 KB
  • 大小: 28.3 KB
  • 大小: 73.9 KB
  • 大小: 44.5 KB
分享到:
评论

相关推荐

    servlet2.4doc

    The doFilter method of the Filter is called by the container each time a request/response pair is passed through the chain due to a client request for a resource at the end of the chain. doGet...

    request.getcontextPath()_详解

    在JavaScript中,我们可以使用hidden input元素来传递Context Path,例如:<input type="hidden" name="contextPath" value="<%= request.getContextPath()%>" />,然后在JavaScript中,我们可以使用该Context Path...

    从HttpServletRequest获取各种路径总结

    ### 从HttpServletRequest获取各种路径总结 #### 一、概述 在Java Web开发中,通过`HttpServletRequest`对象可以获取客户端请求的各种信息,包括但不限于路径信息。这些路径信息对于开发者来说至关重要,尤其是在...

    httpservletRequest的学习笔记

    【httpservletRequest的学习笔记】 在Java Web开发中,HttpServletRequest接口是Servlet API的核心组成部分,它用于封装客户端发送到服务器的HTTP请求。理解HttpServletRequest的工作原理对于任何Servlet开发者来说...

    Request中getContextPath、getServletPath的区别

    在Java的Web开发中,`HttpServletRequest`接口是用于获取客户端请求信息的核心对象。当我们处理HTTP请求时,常常会遇到`getContextPath()`和`getServletPath()`这两个方法,它们都与请求URL有关,但有着不同的作用和...

    java中request.getcontextPath()的意思.doc

    <input type="hidden" name="contextPath" value="<%= request.getContextPath()%>"> ``` 然后,在 JavaScript 代码中,我们可以使用这个值来获取当前项目的路径。 request.getcontextPath() 是一个非常重要的方法...

    HttpServletRequest-response方法总结

    HttpServletRequest-response方法总结 HttpServletRequest和HttpServletResponse是Servlet编程中两个最重要的接口,它们提供了对HTTP请求和响应的控制和处理。下面是对HttpServletRequest和HttpServletResponse的...

    HttpServletRequest源码 HttpServletResponse源码

    在Java Web开发中,`HttpServletRequest`和`HttpServletResponse`是两个至关重要的接口,它们是Java Servlet API的核心组成部分,用于处理客户端(通常是Web浏览器)与服务器之间的HTTP通信。这两个接口提供了丰富的...

    HttpServletRequest对象

    - `getContextPath()`:获取请求URL中属于Web应用程序的路径,通常是相对于Web应用根目录的路径。 - `getServletPath()`:获取请求映射到的Servlet路径,可以是Servlet的名称或者映射路径。 2. **获取请求头的...

    javaWEB总结(7):HttpServlet和HttpServletRequest

    3. **请求路径**:`getRequestURI()`返回完整的请求URI,`getPathInfo()`提供额外的路径信息,而`getContextPath()`则返回应用的上下文路径。 4. **请求方法**:`getMethod()`返回HTTP请求的方法类型(GET、POST等)...

    网站登录页面实例

    <p><form action="<%=request.getContextPath ()%>/CheckServlet" method="post"> <td height="20" colspan="2"><span class="style1">登陆</span></td> 用户名 <td width="161" align="left"><input name=...

    基于HttpServletRequest 相关常用方法的应用

    - `request.getContextPath()`:获取Servlet应用的上下文路径。 - `request.getMethod()`:获取请求的方法,通常是GET或POST。 - `request.getSession()`:创建或返回当前请求关联的Session对象。 了解并熟练...

    Request中getContextPath、getServletPath、getRequestURI、request.getRealPath的区别.doc

    ### Request中getContextPath、getServletPath、getRequestURI、request.getRealPath的区别 #### 一、概述 在Java Web开发中,对于HTTP请求处理时经常需要用到`HttpServletRequest`对象的方法来获取客户端请求的...

    HttpServletRequest对象方法的用法小结

    HttpServletRequest对象方法的用法小结 HttpServletRequest对象是Java Servlet规范中的一种接口,用于描述客户端的HTTP请求。该对象封装了客户端的所有HTTP请求头信息,开发人员可以通过该对象的相关方法来获取...

    数据库测试test.sql

    // String methodName = request.getParameter("method"); // // //根据method属性的值调用相应的方法 // if("login".equals(methodName)){ // this.login(request,response); // }else if("register".equals(method...

    基于Struts+Hibenater

    String path = request.getContextPath(); String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/"; %> <form action="userManage.do?method=...

    java中相对路径,绝对路径问题总结.doc

    在Java编程中,理解路径的概念至关重要,...在实际开发中,应当避免过于依赖于特定的文件系统结构,尽可能使用相对路径,并在必要时使用`request.getContextPath()`来获取Web应用的上下文路径,从而确保路径的正确性。

    getHtmlServlet_javaBygetHtml

    JSONArray ja = JSONArray.fromObject(list); response.getWriter().print(ja); } // 获取 HTML 内容 if (method.equals("getHtml")) { String file_name = request.getParameter("fileName"); String path ...

Global site tag (gtag.js) - Google Analytics