1

私はStruts2が初めてです。cJSTLのタグとStruts2のタグ、どちらsが使いやすいか比較したい...

ListDepartmentNameAction.java

package actions;

import java.util.List;
import org.apache.log4j.Logger;
import org.hibernate.mapping.Array;
import com.opensymphony.xwork2.ActionSupport;
import service.ListDepNameService;

public class ListDepartmentNameAction extends ActionSupport{

private static Logger log = Logger.getLogger(ListDepartmentNameAction.class);
ListDepNameService listDepNameService;
private List<String> allDNlist ;

public String execute() {

    allDNlist = listDepNameService.ListAllDepName();
    for (String ss : allDNlist) {
        System.out.println(ss);
    }
    log.info(allDNlist);
    return "success";

}

public ListDepNameService getListDepNameService() {
    return listDepNameService;
}

public void setListDepNameService(ListDepNameService listDepNameService) {
    this.listDepNameService = listDepNameService;
}

public List<String> getAllDNlist() {
    return allDNlist;
}

public void setAllDNlist(List<String> allDNlist) {
    this.allDNlist = allDNlist;
}   
}

クエリ.jsp

<%@ page language="java" import="java.util.*" contentType="text/html; charset=UTF-8"      pageEncoding="UTF-8" %>
<%@ taglib prefix="s" uri="/struts-tags" %>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<html>
    <head>
    <s:head />
      <h1 align="center" id="h1"></h1>
<body>

   <s:form action="listDepName" id="form" method="post">                
        <input name="Button" type="submit" id="listsubmit" value="List all Department Name" 
        onclick="javascirpt:abc(this)"/>                       
   </s:form>

   <select>
        <c:forEach items="${allDNlist}" var="item">
            <option value="abc" >${item}</option>
        </c:forEach>
   </select>

  <s:if test="%{allDNlist==null}">456</s:if>
  <s:else><s:select name="xxx" list="allDNlist" /></s:else> <!-- 1st -->

  <s:select name="xyz" list="allDNlist" /> <!-- 2nd -->

</body>
</html>

「allDNlist」はアクション クラスから値を取得できるため、JSTL の c タグは正常に機能します。なぜ「1 つ目」の struts2 選択タグは正常に機能するのかわかりませんが、「2 つ目」の選択sタグは機能せず、次のようなメッセージが表示されます

 HTTP Status 500 - tag 'select', field 'list', name 'xyz': The requested list key 'allDNlist' could not be resolved as a collection/array/map/enumeration/iterator type. Example: people or people.{name} - [unknown location]

「2番目」のselect sタグをcomment()しても、上記と同じエラーメッセージが表示されますが、削除するだけです。

4

2 に答える 2

0

編集:

コード全体を再現しましたが、完全に機能しています。

タグを閉じないことに注意してください</head>。私もそれを再現しましたが、同じように機能します...

<head>
   <s:head/>
</head>

あなたListDepNameService listDepNameService;もプライベートとして宣言し(すでにアクセサーを持っています)、返されるリストのタイプを確認する必要があります。

コードをテストしました

    allDNlist = new ArrayList<String>();
    allDNlist.add("Valore 1 ");
    allDNlist.add("Valore 2 ");
    allDNlist.add("Valore 3 ");

execute() メソッドでは、これが唯一の違いです。

サービスコールの代わりにこれを試してください...

于 2012-12-14T09:49:20.790 に答える