2017-09-18 4 views
0

私はターゲットグループリストを表示するテーブルを持っています。各ターゲットグループを表示するリンクがあります。私が「ビュー」をクリックすると、特定のターゲットグループを印刷したいコントローラーに移動します。コントローラのJSPデータの値を取得する

コントローラーのターゲットグループリストから特定のターゲットグループをどのように渡すのですか?

これは私のJSPです:新しいprarmeter groupIdをviewOneTargetGroupに追加

<%@ page isELIgnored="false"%> 
    <%@ taglib uri="http://www.springframework.org/tags/form" prefix="form"%> 
    <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%> 
    <html> 
    <head> 
    <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> 
    <title> viewTargetGroupList</title> 
    </head> 
    <body> 
    <%@include file="content.jsp" %> 

    <form:form commandName="targetGroupList" method="post" action="/segmentation-of-customers/viewOneTargetGroup"> 
     <c:if test = "${not empty targetGroupList }"> 
     <table border="1"> 
       <tr> 
        <th>TARGET GROUP ID</th> 
        <th>TARGET GROUP NAME</th> 
        <th>VIEW</th> 
       </tr> 
       <c:forEach items="${targetGroupList}" var="targetGroupList"> 
        <tr> 
         <td> ${targetGroupList.targetGroupId}</td> 
         <td> ${targetGroupList.targetGroupName}</td> 
      <a href="/segmentation-of-customers/viewOneTargetGroup"> View</a> 
    </tr> 
       </c:forEach> 

      </table> 
     </c:if> 
     <input type="submit" name="Submit" value="VIEW TARGET GROUP"></input> 
    </form:form> 

    </body> 
    </html> 

答えて

0

とJSPに関連イドを送っ:

 <a href="/segmentation-of-customers/viewOneTargetGroup?groupId${targetGroupList.targetGroupId}"> View</a> 
</tr> 
関連する問題