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

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

    Your code is picking up an "incorrect" version of x-1_0.tld, probably due to classpath issues. I see for instance on my current classpath, I have one version of x-1_0.tld that ALLOWS runtime-expressions ${syntax} in this tag and one that does not. The one in standard.jar does not allow EL expressions, while the one I have in jetty does.

提交回复
热议问题