私は最初のJava EE 6 Webアプリを学習課題として書いています。フレームワークを使用せず、JPA 2.0、EJB 3.1、およびJSF 2.0のみを使用しています。
SelectOneコンポーネントに格納されているJPAエンティティをエンティティに戻すカスタムコンバーターがあります。 InitialContext.lookupを使用してセッションBeanへの参照を取得し、関連するエンティティを見つけています。
エンティティごとにコンバータを作成する必要がないように、汎用のエンティティコンバータを作成したいと思います。私は抽象エンティティを作成し、すべてのエンティティにそれを拡張させると思いました。次に、抽象エンティティのカスタムコンバーターを作成し、それをすべてのエンティティのコンバーターとして使用します。
それは理にかなっているおよび/または実用的に聞こえますか?
抽象エンティティを持たず、エンティティを変換するコンバータだけを使用するほうが理にかなっていますか?その場合、適切なセッションBeanへの参照を取得する方法がわかりません。
現在のコンバーターを含めたのは、セッションBeanへの参照を最も効率的な方法で取得できるかどうかわからないためです。
package com.mycom.rentalstore.converters;
import com.mycom.rentalstore.ejbs.ClassificationEJB;
import com.mycom.rentalstore.entities.Classification;
import javax.faces.application.FacesMessage;
import javax.faces.component.UIComponent;
import javax.faces.context.FacesContext;
import javax.faces.convert.Converter;
import javax.faces.convert.ConverterException;
import javax.faces.convert.FacesConverter;
import javax.naming.InitialContext;
import javax.naming.NamingException;
@FacesConverter(forClass = Classification.class)
public class ClassificationConverter implements Converter {
private InitialContext ic;
private ClassificationEJB classificationEJB;
@Override
public Object getAsObject(FacesContext context, UIComponent component, String value) {
try {
ic = new InitialContext();
classificationEJB = (ClassificationEJB) ic.lookup("Java:global/com.mycom.rentalstore_RentalStore_war_1.0-SNAPSHOT/ClassificationEJB");
} catch (NamingException e) {
throw new ConverterException(new FacesMessage(String.format("Cannot obtain InitialContext - %s", e)), e);
}
try {
return classificationEJB.getClassificationById(Long.valueOf(value));
} catch (Exception e) {
throw new ConverterException(new FacesMessage(String.format("Cannot convert %s to Classification - %s", value, e)), e);
}
}
@Override
public String getAsString(FacesContext context, UIComponent component, Object value) {
return String.valueOf(((Classification) value).getId());
}
}
今日も同じ問題がありましたが、汎用のConversionHelperを作成してコンバーターで使用することで解決しました。この目的のために、あらゆるエンティティタイプに対して単純なCRUD操作を実行するために使用する一般的なSLSBであるEntityServiceがあります。また、私のエンティティはgetIdメソッドとsetIdメソッドを持つPersistentEntityインターフェイスを実装しており、シンプルな主キーでそれらを保持しています。それでおしまい。
最後に、私のコンバーターは次のようになります。
@FacesConverter(value = "userConverter", forClass = User.class)
public class UserConverter implements Converter {
@Override
public Object getAsObject(FacesContext ctx, UIComponent component, Java.lang.String value) {
return ConversionHelper.getAsObject(User.class, value);
}
@Override
public String getAsString(FacesContext ctx, UIComponent component, Object value) {
return ConversionHelper.getAsString(value);
}
}
そして私の変換ヘルパーは次のようになります:
public final class ConversionHelper {
private ConversionHelper() {
}
public static <T> T getAsObject(Class<T> returnType, String value) {
if (returnType== null) {
throw new NullPointerException("Trying to getAsObject with a null return type.");
}
if (value == null) {
throw new NullPointerException("Trying to getAsObject with a null value.");
}
Long id = null;
try {
id = Long.parseLong(value);
} catch (NumberFormatException e) {
throw new ConverterException("Trying to getAsObject with a wrong id format.");
}
try {
Context initialContext = new InitialContext();
EntityService entityService = (EntityService) initialContext.lookup("Java:global/myapp/EntityService");
T result = (T) entityService.find(returnType, id);
return result;
} catch (NamingException e) {
throw new ConverterException("EntityService not found.");
}
}
public static String getAsString(Object value) {
if (value instanceof PersistentEntity) {
PersistentEntity result = (PersistentEntity) value;
return String.valueOf(result.getId());
}
return null;
}
}
単純なJPAエンティティー用のコンバーターを作成するには、コンバーターを複製して3つのパラメーターを変更するだけです。
これは私にとってはうまく機能していますが、スタイルとパフォーマンスの点でそれが最良のアプローチかどうかはわかりません。任意のヒントをいただければ幸いです。
私はJSF 2.0のビューマップを使用しています:
@FacesConverter("entityConverter")
public class EntityConverter implements Converter {
private static final String key = "com.example.jsf.EntityConverter";
private static final String empty = "";
private Map<String, Object> getViewMap(FacesContext context) {
Map<String, Object> viewMap = context.getViewRoot().getViewMap();
@SuppressWarnings({ "unchecked", "rawtypes" })
Map<String, Object> idMap = (Map) viewMap.get(key);
if (idMap == null) {
idMap = new HashMap<String, Object>();
viewMap.put(key, idMap);
}
return idMap;
}
@Override
public Object getAsObject(FacesContext context, UIComponent c, String value) {
if (value.isEmpty()) {
return null;
}
return getViewMap(context).get(value);
}
@Override
public String getAsString(FacesContext context, UIComponent c, Object value) {
if (value == null) {
return empty;
}
String id = ((Persistent) value).getId().toString();
getViewMap(context).put(id, value);
return id;
}
}
私の解決策は次のとおりです:
@ManagedBean
@SessionScoped
public class EntityConverterBuilderBean {
private static Logger logger = LoggerFactory.getLogger(EntityConverterBuilderBean.class);
@EJB
private GenericDao dao;
public GenericConverter createConverter(String entityClass) {
return new GenericConverter(entityClass, dao);
}
}
public class GenericConverter implements Converter {
private Class clazz;
private GenericDao dao;
public GenericConverter(String clazz, Generic dao) {
try {
this.clazz = Class.forName(clazz);
this.dao = dao;
} catch (Exception e) {
logger.error("cannot get class: " + clazz, e);
throw new RuntimeException(e);
}
}
public Object getAsObject(javax.faces.context.FacesContext facesContext, javax.faces.component.UIComponent uiComponent, Java.lang.String s) {
Object ret = null;
if (!"".equals(s)) {
Long id = new Long(s);
ret = dao.findById(clazz, id);
}
return ret;
}
public String getAsString(javax.faces.context.FacesContext facesContext, javax.faces.component.UIComponent uiComponent, Java.lang.Object o) {
if (o != null) {
return ((SimpleEntity) o).getId() + "";
} else {
return "";
}
}
}
およびページ内:
<h:selectOneMenu id="x" value="#{controller.x}"
converter="#{entityConverterBuilderBean.createConverter('com.test.model.TestEntity')}">
Seam 3のSeam Facesを使用してこれを試してください。
@Named("DocTypeConverter")
public class DocumentTypeConverter implements Converter, Serializable {
private static final long serialVersionUID = 1L;
@Inject
private DocumentTypeSessionEJB proDocTypeSb;
@Override
public Object getAsObject(FacesContext context, UIComponent component,
String value) {
DocumentType result = null;
if (value != null && !value.trim().equals("")) {
try {
result = (DocumentType) proDocTypeSb.findById(DocumentType.class, value);
} catch(Exception exception) {
throw new ConverterException(new FacesMessage(FacesMessage.SEVERITY_ERROR, "Conversion Error", "Not a valid value"));
}
}
return result;
}
@Override
public String getAsString(FacesContext context, UIComponent component,
Object value) {
String result = null;
if (value != null && value instanceof DocumentType){
DocumentType docType = (DocumentType) value;
result = docType.getId();
}
return result;
}
}
Seam Facesを使用すると、必要なことを行うConverterクラスが提供されます。
org.jboss.seam.faces.conversion.Converter
これはJBossプロジェクトですが、Seam 3はGlassfish 3.1以降で正常に動作します。
http://seamframework.org/Seam3/FacesModule
3.1では、追加の依存関係がいくつかあります。参照 http://blog.ringerc.id.au/2011/05/using-seam-3-with-glassfish-31.html
(JSF 2.3で更新)
私はこのようなものを使用しています:
@FacesConverter(value = "entityConverter", managed = true)
public class EntityConverter implements Converter<Object> {
@Inject
private EntityManager entityManager;
@Override
public Object getAsObject(FacesContext context, UIComponent component, String value) {
Class<?> entityType = component.getValueExpression("value").getType(context.getELContext());
Class<?> idType = entityManager.getMetamodel().entity(entityType).getIdType().getJavaType();
Converter idConverter = context.getApplication().createConverter(idType);
Object id = idConverter.getAsObject(context, component, value);
return entityManager.getReference(entityType, id);
}
@Override
public String getAsString(FacesContext context, UIComponent component, Object value) {
Object id = entityManager.getEntityManagerFactory().getPersistenceUnitUtil().getIdentifier(value);
Converter idConverter = context.getApplication().createConverter(id.getClass());
return idConverter.getAsString(context, component, id);
}
}
テンプレートでは、<f:converter binding="#{entityConverter}" />
。
Craig Ringerの応答を完了するには、一般的な org.jboss.seam.faces.conversion.ObjectConverter
Seam 3 FacesModule の。
ここでコードを取得できます: https://github.com/seam/faces/blob/develop/impl/src/main/Java/org/jboss/seam/faces/conversion/ObjectConverter.Java =
2つのHashMap
s(1つは逆に使用)を使用し、そのオブジェクトをConversation
にストックします。