search

Home  >  Q&A  >  body text

java - JSP页面中的内置对象无法调用各自的方法(IDE无提示,并报错)

巴扎黑巴扎黑2845 days ago712

reply all(1)I'll reply

  • 高洛峰

    高洛峰2017-04-18 10:47:31

    out is an instance of JspWriter的实例,request是HttpServletRequest and depends on servlet api. If you are using maven application, just add the following dependencies:

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

    reply
    0
  • Cancelreply