1. 程式人生 > >org.apache.jasper.JasperException: Unable to compile class for JSP: List cannot be resolved to a type 錯誤

org.apache.jasper.JasperException: Unable to compile class for JSP: List cannot be resolved to a type 錯誤

org.apache.jasper.JasperException: Unable to compile class for JSP:

An error occurred at line: 163 in the jsp file:

/touch/management/permission/adminManagement.jsp
List cannot be resolved to a type

 <%
162:   SysUser user = SysContext.getSysUserFromSession();
163:   List<UserFunction> funs = user.getAllMenus();
.......

List cannot be resolved to a type表示List不能被定義為一個型別
這個錯誤要匯入java.util.*包,

在jsp中使用List前加上 <%@ page import="java.util.*" %>就可以解決問題