JspException and PageContext cannot be resolved

后端 未结 7 1943
眼角桃花
眼角桃花 2020-12-29 09:09

This is a follow up to a question on accessing resources in jsp page of spring mvc app Thanks to @kmb385 I was able to resolve that problem but now I get the following eclip

7条回答
  •  鱼传尺愫
    2020-12-29 09:47

    Try import the class.

    Modify your jsp's first line to look like this;

    <%@ page language="java" import="javax.servlet.jsp.PageContext" contentType="text/html; charset=ISO-8859-1"pageEncoding="ISO-8859-1"%>

提交回复
热议问题