如何在jsp中使用JSTL标签?

问题描述 投票:-1回答:1

我对JSTL标签库不习惯。我学会了JSTL for loop的基本使用。但是当我开始我的项目时,我得到了一些复杂的东西,在这个阶段,我不知道如何使用JSTL标签库。在这个阶段,我不知道如何使用JSTL,下面是JSP页面的代码。

<%
    //get the group list for post
    GroupOperation gpo = new GroupOperation(DBConnection.getConnection());
    List<Groups> groupList = gpo.getGroups();
    pageContext.setAttribute("myGroup", groupList);

   //get the user post
  PostOperation postOperation = new PostOperation(DBConnection.getConnection());
  List<Posts> postList = postOperation.getAllPost();
  pageContext.setAttribute("psList", postList);
  if (postList == null) {
    System.out.println("there is no post to show");
    }
%>

 <%
         for (GroupMembers memgr : grm) {
              for (Posts p : postList) {
                if (memgr.getGroupId() == p.getGroupId()) {
%>
                 <h4><%= gpo.getSingleGroup(p.getGroupId()).getGroupName()%></h4>
<%
                }
            }
        }
%>

<%= gpo.getSingleGroup(p.getGroupId()).getGroupName()%> 这是我最复杂的部分,我将永远感激您的回答。

java jsp jstl
1个回答
0
投票

首先你需要在你的构建路径中添加jstl jar文件.并使用下面的代码,我希望它能帮助你,并得到一些想法。

<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt"%>

<c:forEach items="grm" var="memgr">
    <c:forEach items="postList" var="p">
        <c:if test="${memgr.groupId eq p.groupId}">
              <h4>
                    ${gpo.getSingleGroup(p.getGroupId()).groupName}
              </h4>
        </c:if>
    </c:forEach>
</c:forEach>
© www.soinside.com 2019 - 2024. All rights reserved.