1. 程式人生 > >IDEA解決JSP頁面無法使用EL表示式問題

IDEA解決JSP頁面無法使用EL表示式問題

方法1:更改web.xml的web-app標籤中的名稱空間:

<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee     http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
         version="3.1">
</web-app>
方法2:jsp頁面開頭新增
<%@ page isELIgnored="false"%>