According to TLD or attribute directive in tag file, attribute value does not accept any expressions報錯解決辦法

lonecloud發表於2017-04-07

1.出現原因:

  匯入的uri由於不是正確的導致這個jstl不支援el的表示式

  jstl uri匯入錯誤:

   1 <%@ taglib prefix="c" uri="http://java.sun.com/jstl/core" %> 

不支援el表示式

 修改方法

  將其改為

 1 <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> 

就可以解決這個問題

  

相關文章