我想要一个Criteria查询来使用AliasToBeanResultTransformer实例化一个DTO类。目标是生成一个轻量级分页列表,其中包含用于主页进一步操作的ID。这需要报告类型查询。
Criteria crit = session.createCriteria(Profile.class);
crit.createAlias("personalData", "pd");
crit.createAlias("emails", "e");
crit.createAlias("telephones", "t");
ProjectionList properties = Projections.projectionList();
properties.add(Projections.property("id").as( "id"));
properties.add(Projections.property("pd.lastName").as("lastName"));
properties.add(Projections.property("pd.fullName").as("fullName"));
properties.add(Projections.property("e.emailAddress").as("email"));
properties.add(Projections.property("t.phoneNumber").as("phone"));
crit.setProjection(properties);
crit.setResultTransformer(new AliasToBeanResultTransformer(ProfileDTO.class));
profiles = crit.list();
这无法实例化我的DTO类。 ProfileDTO有一个匹配的构造函数:
public ProfileDTO(Long id, String lastName, String fullName, String email,
String phone) {
this(id,fullName);
this.lastName = lastName;
this.email = email;
this.phone = phone;
}
当我使用结果行
手动构造ProfileDTO对象时,查询有效 List<Object[]> rows = crit.list();
for ( Object[] row: rows ) {
ProfileDTO dto = new ProfileDTO();
dto.setId((Long)row[0]);
dto.setLastName((String)row[1]);
dto.setFullName((String)row[2]);
dto.setEmail((String)row[3]);
dto.setPhone((String)row[4]);
profiles.add(dto);
}
我的解决方法工作正常,但似乎没必要。我做错了什么?
答案 0 :(得分:7)
AliasToBeanResultTransformer使用setter来填充DTO。如果要使用构造函数来创建bean实例,则需要使用AliasToBeanConstructorResultTransformer。
你的DTO似乎有一个set元组的所有元素,除了lastName。也许这就是问题所在。
那就是说,你的代码很简单,易于维护和可重构。它不会与AliasToBeanResultTransformer重构。我通常喜欢自己实例化我的DTO,就像你一样。
答案 1 :(得分:0)
试试这个:
public List<ProfileDTO> getProfiles() throws HibernateException
{
try {
session = HibernateUtil.getSessionFactory().openSession();
Criteria criteria = session.createCriteria(Profile.class);
criteria.createAlias("personalData", "pd");
criteria.createAlias("emails", "e");
criteria.createAlias("telephones", "t");
criteria.setProjection(Projections.projectionList()
.add(Projections.property("id").as( "id"))
.add(Projections.property("pd.lastName").as("lastName"))
.add(Projections.property("pd.fullName").as("fullName"))
.add(Projections.property("e.emailAddress").as("email"))
.add(Projections.property("t.phoneNumber").as("phone"))
);
criteria.setResultTransformer(Transformers.aliasToBean(ProfileDTO.class));
return (List<ProfileDTO>)criteria.list();
} catch (HibernateException he){
he.printStackTrace();
throw he;
} finally {
if(session.isOpen()){
session.close();
}
}
}