JasperException:处理JSP页面时发生异常

时间:2015-08-09 12:27:22

标签: java spring jsp

我使用Spring tomcat web服务器。尝试在jsp中打印对象列表。在locale机器tomcat 7服务器jsp文件工作正常,但是当我把它推送到远程tomcat 8服务器时,我得到了这个例外:

    org.apache.jasper.JasperException: An exception occurred processing JSP page /WEB-INF/view/web/matches.jsp at line 52

49:                 <div class="row" id="home-content">
50:                     <div class="col-sm-8">
51:                         <section class="panel">
52:                             <c:forEach var="i" begin="0" end="${matches.size()-1}" step="1">
53:                                 <c:if test="${i == 0 || matches.get(i).league != matches.get(i-1).league}">
54:                                     <table class="table table-condensed matcheslist">

记录器也会在日志文件中写入此调试错误。

DispatcherServlet:1225 - Error rendering view [org.springframework.web.servlet.view.JstlView: name 'web/matches'; URL [/WEB-INF/view/web/matches.jsp]] in DispatcherServlet with name 'DispatcherServlet'

0 个答案:

没有答案