本人使用的是taglib做爲模板頁,而後碰到的這個問題,若是有相似的能夠參考。java
<%@tag description="Overall Page template" pageEncoding="UTF-8"%> <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%> <%@attribute name="header" fragment="true" %> <%@attribute name="footer" fragment="true" %> <%@attribute name="bottom" fragment="true" required="false" %> <%@attribute name="top" fragment="true" %>
首先注意:attribute的name必須小寫!若是大寫,會報上述問題。jsp
第二,實際調用的真實jsp頁面,全部的attribute必須在jspBody以前!!!ui