hibernate查询部分字段并封装到指定类中(HQL)
在实际项目开发中,我们使用Hibernate框架很容易的来关联实体与实体之间的关系,但是缺点就是关联关系太紧密导致查询不太灵活,如果使用sql来查询。我们倒不如使用mybatis框架。
Hibernate的HQL语句查询出来的结果可以直接映射到实体类中,查询的结果也比较好操作。
但是如果只查询部分字段怎么来进行封装呢?
QBC效率较慢此处略去。
不使用ORM方式(和sql查询类似)
- String hql = “select id,name from Link”;
- Query query = session.createQuery(hql);
- //默认查询出来的list里存放的是一个Object数组,还需要转换成对应的javaBean。
- List<Object[]> links = query.list();
- for(Object[] link : links){
- String id = link[0];
- String name = link[1];
- System.out.println(id + ” : ” + name);
- }
String hql = "select id,name from Link";上述查询出来的数据还要手动封装成javaBean 比较低效
Query query = session.createQuery(hql);
//默认查询出来的list里存放的是一个Object数组,还需要转换成对应的javaBean。
List<Object[]> links = query.list();
for(Object[] link : links){
String id = link[0];
String name = link[1];
System.out.println(id + " : " + name);
}
通过HQL语句new POJO()实现
- String hql = “select new Link(id,name) from Link”;
- Query query = session.createQuery(hql);
- //默认查询出来的list里存放的是一个Object对象,但是在这里list里存放的不再是默认的Object对象了,而是Link对象了
- List<Link> links = query.list();
- for(Link link : links){
- String id = link.getId();
- String name = link.getName();
- System.out.println(id + ” : ” + name);
- }
String hql = "select new Link(id,name) from Link";
Query query = session.createQuery(hql);
//默认查询出来的list里存放的是一个Object对象,但是在这里list里存放的不再是默认的Object对象了,而是Link对象了
List<Link> links = query.list();
for(Link link : links){
String id = link.getId();
String name = link.getName();
System.out.println(id + " : " + name);
}
这种查询方式可以直接把查出来的两列值,封装到Link类中,注意:Link类中 必须有一个对应的有参构造函数,否则会报错。
扩展:
第二种方法,虽然已经可以自动封装,但还是存在缺陷,现实项目中,要查询出来的结果不一定是Link类里的属性能够满足的,我们可以根据根据需求来设计类。我们要查询Link的 id name 和外键ID 这个情况下Link类无法满足需求 id为Integer类型name为String类型foreignKeyId为integer类型我们可以按照需求设计一个javaBean如下- public class Test {
- private Integer id;
- private String name;
- private Integer foreignKeyId;
- /**
- * 无参构造
- * @return
- */
- public Test() {
- super();
- }
- /**
- * 有参构造
- * @param id
- * @param name
- * @param foreignKeyId
- */
- public Test(Integer id, String name, Integer foreignKeyId) {
- super();
- this.id = id;
- this.name = name;
- this.foreignKeyId = foreignKeyId;
- }
- public Integer getId() {
- return id;
- }
- public void setId(Integer id) {
- this.id = id;
- }
- public String getName() {
- return name;
- }
- public void setName(String name) {
- this.name = name;
- }
- public Integer getForeignKeyId() {
- return foreignKeyId;
- }
- public void setForeignKeyId(Integer foreignKeyId) {
- this.foreignKeyId = foreignKeyId;
- }
- }
public class Test {
private Integer id;
private String name;
private Integer foreignKeyId;
/**
* 无参构造
* @return
*/
public Test() {
super();
}
/**
* 有参构造
* @param id
* @param name
* @param foreignKeyId
*/
public Test(Integer id, String name, Integer foreignKeyId) {
super();
this.id = id;
this.name = name;
this.foreignKeyId = foreignKeyId;
}
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public Integer getForeignKeyId() {
return foreignKeyId;
}
public void setForeignKeyId(Integer foreignKeyId) {
this.foreignKeyId = foreignKeyId;
}
}
查询
- String hql = “select new Test(id,name,foreignKeyId) from Link”;
- Query query = session.createQuery(hql);
- List<Object> links = query.list();
- for(Test test : links){
- System.out.println(test.toString());
- }
String hql = "select new Test(id,name,foreignKeyId) from Link";
Query query = session.createQuery(hql);
List<Object> links = query.list();
for(Test test : links){
System.out.println(test.toString());
}
注意:按照需求设计的类字段名称无需对应查询字段,但是类型和构造函数必须对应。