Eclipse中include 标签使用出现的问题
在MyEclipse中使用<%@ include %>标签让一个页面包含另一个页面。结果出现了如下的错误:
Multiple annotations found at this line:- Syntax error on token "}", { expected- Syntax error, insert "Finally" to complete TryStatement<div id="content3" items="${requestScope.biaozhunParameters}"> <%@include file="seriesItem.jsp" %> </c:forEach> </c:otherwise> </c:choose> </div> <div id="content4" items="${requestScope.xingnengParameters}"> <%@include file="seriesItem.jsp" %> </c:forEach> </c:otherwise> </c:choose> </div> <div id="content5" items="${requestScope.caizhiParameters}"> <%@include file="seriesItem.jsp" %> </c:forEach> </c:otherwise> </c:choose> </div><%@ page language="java" pageEncoding="gb2312"%><%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%><c:choose><c:when test="${parameter.opinionType == 4}"><div><label>${parameter.name }:</label><input type="button" value="选择"></div></c:when><c:otherwise>....内容省略 </c:otherwise></c:choose>