3

から選択したオブジェクトを取得したいのです<h:selectOneMenu>が、問題は、すべてのタイプのエンティティの汎用コンバーターが見つからなかったことです。

私の最初の質問は、すべてのタイプのエンティティに対応する汎用コンバーターはありますか? 他のエンティティごとに別のコンバーターを再度作成したくありません。私の2番目の質問は、コンバーターなしで選択したオブジェクトを取得する方法はありますか? DBを何度も呼び出したくありません。

プロパティを持つCarエンティティがidありnameます。

4

3 に答える 3

1

オブジェクトの種類ごとにコンバーターを作成したり、データベースを呼び出す必要がなく (ほとんどの例が示すように)、ドロップダウン リストからオブジェクトを簡単に選択できるように、一般的なコンバーターが必要なようです。しかし、私が知っていることはないので、これを行うために独自のコンバーターを作成しました。コンバーターは、オブジェクトがgetId()ある種の一意の ID を返すメソッドを持っていることを期待していることに注意してください。そうでない場合は失敗します。getMethodName()キーとして使用するメソッドの名前をプログラムで決定する必要がある場合は、にロジックを追加できます。プロジェクトで Seam を使用していることに注意してください。Seam を使用しない場合、おそらく NO_SELECTION_VALUE 部分とクラスの 3 つのアノテーションを削除できます。

このコードは、http: //arjan-tijms.omnifaces.org/2011/12/automatic-to-object-conversion-in-jsf.htmlに触発されました。

import java.lang.reflect.Method;
import java.util.ArrayList;
import java.util.Collection;

import javax.faces.component.UIComponent;
import javax.faces.component.UISelectItem;
import javax.faces.component.UISelectItems;
import javax.faces.context.FacesContext;
import javax.faces.convert.ConverterException;
import javax.faces.model.SelectItem;

import org.jboss.seam.annotations.Name;
import org.jboss.seam.annotations.faces.Converter;
import org.jboss.seam.annotations.intercept.BypassInterceptors;

/**
 * @author: Jason Wheeler
 * @description Converter for lists (SelectOneMenu, SelectManyMenu, etc)
 * @created: 09/05/2013
 */

@Name("listConverter")
@BypassInterceptors
@Converter
public class ListConverter implements javax.faces.convert.Converter {
    private String NO_SELECTION_VALUE = "org.jboss.seam.ui.NoSelectionConverter.noSelectionValue";

    @Override
    public String getAsString(FacesContext facesContext, UIComponent component, Object obj) {
        if (obj == null) {
            return NO_SELECTION_VALUE;
        } else {
            try {
                Method method = obj.getClass().getMethod(getMethodName(obj));
                return String.valueOf(method.invoke(obj));
            } catch (Exception e) {
                throw new RuntimeException(e);
            }
        }
    }

    public String getMethodName(Object obj) {
        return "getId";
    }

    @Override
    public Object getAsObject(FacesContext facesContext, UIComponent component, String val) throws ConverterException {
        if (val == null) {
            return null;
        } else if (val.equals(NO_SELECTION_VALUE)) {
            return null;
        } else {
            for (SelectItem item : getSelectItems(component)) {
                if (val.equals(getAsString(facesContext, component, item.getValue()))) {
                    return item.getValue();
                }
            }
            return null;
        }
    }

    protected Collection<SelectItem> getSelectItems(UIComponent component) {
        Collection<SelectItem> collection = new ArrayList<SelectItem>();

        for (UIComponent child : component.getChildren()) {
            if (child instanceof UISelectItem) {
                UISelectItem ui = (UISelectItem) child;
                SelectItem item = (SelectItem) ui.getValue();
                collection.add(item);
            } else if (child instanceof UISelectItems) {
                UISelectItems ui = (UISelectItems) child;
                Object value = ui.getValue();
                collection.addAll((Collection<SelectItem>) value);
            }
        }

        return collection;
    }
}
于 2013-09-05T19:23:15.770 に答える