标签:
在 new bean()中,对象里要有其构造方法,查询参数必须是构造方法中的参数,get set也要同步
类似于 String hql= "select new A(t.id, t.name, t.pass, t.bid,b.name) from A a,B b where t.bid=b.id"
class A{
public A(int id,string name,string pass,int bid, string name){...}
}
标签:
原文地址:http://www.cnblogs.com/liangbo-/p/5129690.html