Questions tagged «jsp»

JSP(JavaServer Pages)是一种在服务器计算机上运行的基于Java的视图技术,它使您可以用(诸如HTML,CSS,JavaScript等客户端语言)编写模板文本并与后端Java代码进行交互。

4
带循环的增量计数器
这个问题与我以前的问题有关: JSP迭代槽对象列表 我想在for循环中插入从0开始的计数器,到目前为止,我已经尝试了几种组合: 1。 <c:forEach var="tableEntity" items='${requestScope.tables}'> <c:forEach var="rowEntity" items='${tableEntity.rows}' varStatus="count"> <c:out value="${count}" /> </c:forEach> </c:forEach> 2。 <c:set var="count" value="0" scope="page" /> <c:forEach var="tableEntity" items='${requestScope.tables}'> <c:forEach var="rowEntity" items='${tableEntity.rows}'> <%=count++%> <c:out value="${count}" /> </c:forEach> </c:forEach> 第一种方法的问题是,外循环有3个项目,内循环有7个项目,因此对于每个外项目,计数都从0开始。第二个方法出现编译错误。这基本上是我想要的: counter = 0; outer for loop inner for loop counter++; //cout/echo/print counter value should start …
69 java  jsp  jstl 

1
如果字符串不相等,该如何比较?
我试图只显示基于字符串是否不等于的内容: <c:if test="${content.getContentType().getName() != "MCE"}"> <li><a href="#publish-history" id="publishHistoryTab">Publish History</a></li> </c:if> 它不断抛出错误 org.apache.jasper.JasperException: /WEB-INF/jsp/content/manage.jsp(14,60) PWC6212: equal symbol expected 我也试过not eq来代替!= 有效的语法是not equal to什么?
69 java  jsp  jstl 


11
无法为JSP编译类:无法解析类型java.util.Map $ Entry。从所需的.class文件间接引用它
我无法获取tomcat7来编译jsps。直到运行示例servlet一切正常,并且服务已启动并正在运行。我正在运行oracle java 8。 谁能指出我正确的方向? 这是堆栈跟踪: type Exception report message Unable to compile class for JSP: description The server encountered an internal error that prevented it from fulfilling this request. exception org.apache.jasper.JasperException: Unable to compile class for JSP: An error occurred at line: 1 in the generated java file The type …
67 java  jsp  tomcat  servlets 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.