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

Eternallyc發表於2018-06-06

方法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"%>

 

相關文章