Error using JSTL XML taglib - attribute xml does not accept any expressions

前端 未结 6 1572
遇见更好的自我
遇见更好的自我 2021-01-24 12:12

I\'m getting the following error when I try to use the JSTL XML taglib:

/server-side-transform.jsp(51,0) 
According to TLD or attribute directive in tag file,
at         


        
6条回答
  •  爱一瞬间的悲伤
    2021-01-24 12:48

    Use the following code:

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

    Instead of:

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

提交回复
热议问题