プロジェクションを使用する場合、戻り値の型は、条件型ではなくオブジェクトまたはオブジェクト[]になります。変圧器を使用する必要があります。ここで
は簡単ResultTransformerです:
private class ProjectionTransformer implements ResultTransformer {
private String[] propertysList;
private Class<?> classObj;
/**
* @param propertysList
*/
public ProjectionTransformer(String[] propertysList) {
this.classObj = persistentClass;
this.propertysList = propertysList;
}
/**
* @param classObj
* @param propertysList
*/
public ProjectionTransformer(Class<?> classObj, String[] propertysList) {
this.classObj = classObj;
this.propertysList = propertysList;
}
@SuppressWarnings("unchecked")
public List transformList(List arg0) {
return arg0;
}
public Object transformTuple(Object[] resultValues, String[] arg1) {
Object retVal = null;
try {
retVal = Class.forName(classObj.getName()).newInstance();
int dot = -1;
for (int i = 0; i < resultValues.length; i++) {
if ((dot = propertysList[i].indexOf(".")) > 0) {
propertysList[i] = propertysList[i].substring(0, dot);
}
PropertyUtils.setProperty(retVal, propertysList[i], resultValues[i]);
}
} catch (Exception e) {// convert message into a runtimeException, don't need to catch
throw new RuntimeException(e);
}
return retVal;
}
}
は、ここではそれを使用する方法は次のとおりです。
ProjectionList pl = (...)
String[] projection = new String[]{"Id","Description","Bid.Amount"};
crit.setProjection(pl).setResultTransformer(new ProjectionTransformer(projection));
私は関係(例:Bid.Amount)のためにそれをテストしていません。
私は1.2を使用しています。私はそれが動作するかどうか試してみるつもりです。ありがとう。 – sker