本人使用的是taglib作為模板頁,然后碰到的這個問題,如果有類似的可以參考。
<%@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頁面,所有的attribute必須在jspBody之前!!!