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

前端 未结 6 1542
遇见更好的自我
遇见更好的自我 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 13:04

    I realize this question was asked quite a while ago but I just ran into the same problem. In my case, the example I was following directed me to use:

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

    When I should have been using:

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

    I was staring at the solution for a while before the extra jsp in the uri popped out at me.

提交回复
热议问题