PM to add a small function to the project, to report the problem, see:
Severity: servlet.service () for servlet [springmvc] in context with path [/PUP] threw exception [An exception occurred processing JSP page /pages/front/conference/showconferencedetails.jsp at line 3229: <div class= "Oh" >30: <c:foreach items= "${NEWSLIST&NBSP;}" Var= "New" >31: <div class= "Block" >32: <p></p>33: <p>${c.title }</p>34: </div>35: </c:forEach>
For a long while, the final discovery is because of the problem of the alias,
is a var= "New", the problem with this sentence, new is the keyword in the JSP,
Define new as another ok!
The Modified code:
C:foreach items= "${NEWSLIST&NBSP;}" var= "C" > <div class= "Block" > <p>< Img src= "/images/news/contentpicture/${c.contentpicture}" width= "184" height= " />" </p> <p>${c.title } </p> </div> &nbSp; </c:foreach>