22

POJO のリストを使用する PrimeFaces コンポーネントを操作する場合、カスタム コンバーターを作成するにはどうすればよいですか? 私の特定の問題は<p:pickList>

<p:pickList converter="????" value="#{bean.projects}" var="project" 
                             itemLabel="#{project.name}" itemValue="#{project}">

java.lang.ClassCastExceptionJSFが送信された値を変換されていない送信された値で設定するため、コンバーターがないと取得できjava.lang.Stringます。

4

6 に答える 6

39

他のデータベースアクセスがなくても可能ですが、最善の方法はわかりません。私は非常に特殊なコンバーターを使用しており、選択リストに対してのみ機能します。これを試して:

@FacesConverter(value = "primeFacesPickListConverter")public class PrimeFacesPickListConverter implements Converter {
@Override
public Object getAsObject(FacesContext arg0, UIComponent arg1, String arg2) {
    Object ret = null;
    if (arg1 instanceof PickList) {
        Object dualList = ((PickList) arg1).getValue();
        DualListModel dl = (DualListModel) dualList;
        for (Object o : dl.getSource()) {
            String id = "" + ((Project) o).getId();
            if (arg2.equals(id)) {
                ret = o;
                break;
            }
        }
        if (ret == null)
            for (Object o : dl.getTarget()) {
                String id = "" + ((Project) o).getId();
                if (arg2.equals(id)) {
                    ret = o;
                    break;
                }
            }
    }
    return ret;
}

@Override
public String getAsString(FacesContext arg0, UIComponent arg1, Object arg2) {
    String str = "";
    if (arg2 instanceof Project) {
        str = "" + ((Project) arg2).getId();
    }
    return str;
}

および選択リスト:

<p:pickList converter="primeFacesPickListConverter" value="#{bean.projects}" var="project" 
                        itemLabel="#{project.name}" itemValue="#{project}">

私にとっては仕事です。改善が必要です。

于 2011-07-08T13:48:59.503 に答える
18

カスタムコンバーターの書き方を調べた結果、解決策は次のとおりです。
1. を実装する Java クラスを作成するjavax.faces.convert.Converter;

public class ProjectConverter implements Converter{

   @EJB
   DocumentSBean sBean;

   public ProjectConverter(){
   }

   public Object getAsObject(FacesContext context, UIComponent component, String value){
     return sBean.getProjectById(value);
     //If u look below, I convert the object into a unique string, which is its id.
     //Therefore, I just need to write a method that query the object back from the 
     //database if given a id. getProjectById, is a method inside my Session Bean that
     //does what I just described
   }

   public String getAsString(FacesContext context, UIComponent component, Object value)     
   {
     return ((Project) value).getId().toString(); //--> convert to a unique string.
   }
}

2.カスタムコンバーターを登録しますfaces-config.xml

<converter>
    <converter-id>projectConverter</converter-id>
    <converter-class>org.xdrawing.converter.ProjectConverter</converter-class>
</converter>

3. これで、Primefaces コンポーネント内で、ただconverter="projectConverter". 私が作成したばかりであることにprojectConverter注意してください。<convert-id>上記の問題を解決するために、私はこれを行います:

<p:pickList converter="projectConverter" value="#{bean.projects}" var="project" 
                            itemLabel="#{project.name}" itemValue="#{project}">
于 2010-09-01T22:50:16.123 に答える
6

はい、次のように、ピックリスト内のオブジェクトをシリアル化/逆シリアル化するコンバーターを作成できます。

@FacesConverter(value="PositionMetricConverter")
public class PositionMetricConverter implements Converter {

    private static final Logger log = Logger.getLogger(PositionMetricConverter.class.getName());

    @Override
    public Object getAsObject(FacesContext facesContext, UIComponent uiComponent, String value) {
        try {
            byte[] data = Base64.decodeBase64(value);
            ObjectInputStream ois = new ObjectInputStream(new ByteArrayInputStream(data));
            Object o = ois.readObject();
            ois.close();
            return o;
        } catch (Exception e) {
            log.log(Level.SEVERE, "Unable to decode PositionMetric!", e);
            return null;
        }
    }

    @Override
    public String getAsString(FacesContext facesContext, UIComponent uiComponent, Object value) {
        try {
            ByteArrayOutputStream baos = new ByteArrayOutputStream();
            ObjectOutputStream oos = new ObjectOutputStream(baos);
            oos.writeObject(value);
            oos.close();

            return Base64.encodeBase64String(baos.toByteArray());
        } catch (IOException e) {
            log.log(Level.SEVERE, "Unable to encode PositionMetric!", e);
            return "";
        }
    }

}

次に、このコンバーターを次のようにピックリストに適用します。

<p:pickList converter="PositionMetricConverter" value="#{bean.positionMetrics}" 
    var="positionMetric" itemLabel="#{positionMetric.name}" itemValue="#{positionMetric}"/>

オブジェクトがシリアライズ可能であることを確認してください。

于 2012-02-20T16:15:19.057 に答える
3

この問題はプライムフェイスに関連したものではなく、一般的な JSF に関連したものです。

データベースに再度アクセスする必要があるのはなぜですか? Bean には、コンポーネントに表示するオブジェクトのリストが既に含まれていますか、それともリクエスト スコープですか?

  • id フィールドを含む Hibernate Pojo のスーパークラスを作成します。スーパー クラスを作成したくない場合は、pojo クラスを使用しますが、さらにコンバーター クラスが必要です。
  • そのスーパークラスを使用すると、コンストラクターで渡された Pojo のリストを含むすべての Pojo クラスの汎用コンバーターを作成できます。
  • コンバーターをセッション Bean のプロパティとして追加し、そのコンバーターを JSF コンポーネントで使用します。

Bean の get プロパティを介して最終リストにアクセスする場合、またはコンバーターのネストされたものを選択できます。

public class SuperPojo
{
    protected Integer id;
    //constructor & getter
}

public class PojoTest extends SuperPojo 
{
    private String label = null;    
    //constructor & getter
}

public class SuperPojoConverter<T extends SuperPojo> implements Converter
{
    private Collection<T> superPojos;

    public IdEntityConverter(Collection<T> superPojos)
    {
        this.superPojos = superPojos;
    }

    @Override
    public Object getAsObject(FacesContext context, UIComponent component, String value)
    {
        //catch exceptions and empty or  null value!
        final int intValue = Integer.parseInt(value);
        for(SuperPojo superPojo : this.superPojos)
            if(superPojo.getId().intValue() == intValue)
                return superPojo;

        return null;
    }

    @Override
    public String getAsString(FacesContext context, UIComponent component, Object value)
    {
        //catch null and instanceof
        return String.valueOf(((SuperPojo)value).getId().intValue());
    }

    public Collection<T> getSuperPojos()
    {
        return this.superPojos;
    }
}

public class Bean 
{
    private SuperPojoConverter<PojoTest> pojoTestConverter = null;

    public Bean()
    {
        final List<PojoTest> pojoTests = //get list from hibernate
        this.pojoTestConverter = new SuperPojoConverter<PojoTest>(pojoTests);
    }

    public SuperPojoConverter<PojoTest> getPojoTestConverter()
    {
        return this.pojoTestConverter;
    }
}


<h:selectOneMenu value="#{selPojoTest}" converter="#{bean.getPojoTestConverter}">
    <f:selectItems value="#{bean.getPojoTestConverter.getSuperPojos}" var="varPojoTest" itemLabel="#{varPojoTest.label}" itemValue="#{varPojoTest}"/>
</h:selectOneMenu>
于 2012-02-23T16:14:40.623 に答える
2

2つのデータベースヒットなしでそれを実装する方法はありますか?

つまり、あなたが持っているとき

#{bean.projects}

これはデータベース ヒットです。

そしてコンバーターが置くとき

sBean.getProjectById(value);

bean.projects にはすでにオブジェクトの ID と値があるため、不要なデータベース ヒットです。

于 2010-12-20T23:58:05.173 に答える