/WEB-INF/jsp/userlist.jsp (line: [48], column: [4]) According to TLD or attribute directive in tag file, attribute [items] does not accept any expressions

bug:

 解决办法:

  这里可已看出错误的大概意思 :我的jsp的第48行有问题

      jsp48行代码:<td><fmt:formatDate value='${it.birthday}' pattern='yyyy-MM-dd'/></td>

  然后就修改了一下:

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

  然后就好了!!


原文地址:https://www.cnblogs.com/worth-/p/14301130.html