hibernate的findByExample()方法怎么使用?急~~~~~!
2个回答
展开全部
QBC查询会根据传入的实体的属性经行查找,当然会忽略主键,关联属性。
User u = new User();
u.setAge(20),
u.setSex("男"),
使用QBC就如同会发送如下sql语句:
select * from user wher age=20 and sex='男';
User u = new User();
u.setAge(20),
u.setSex("男"),
使用QBC就如同会发送如下sql语句:
select * from user wher age=20 and sex='男';
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
public List findByExample(UserForm instance) {
log.debug("finding UserForm instance by example");
try {
List results = hibernateTemplate.findByExample(instance);
log.debug("find by example successful, result size: "
+ results.size());
return results;
} catch (RuntimeException re) {
log.error("find by example failed", re);
throw re;
}
}
在调用的时候直接传递一个UserForm的对象就可以啊
log.debug("finding UserForm instance by example");
try {
List results = hibernateTemplate.findByExample(instance);
log.debug("find by example successful, result size: "
+ results.size());
return results;
} catch (RuntimeException re) {
log.error("find by example failed", re);
throw re;
}
}
在调用的时候直接传递一个UserForm的对象就可以啊
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询