以在接口HibernateDaoSupport 中的类中获取session查询数据库中的数据。
一、Hibernate是一个开放源代码的对象关系映射框架,它对JDBC进行了非常轻量级的对象封装,它将POJO与数据库表建立映射关系,是一个全自动的orm框架,hibernate可以自动生成SQL语句,自动执行。
二、 Hibernate可以应用在任何使用JDBC的场合,既可以在Java的客户端程序使用,也可以在Servlet/JSP的Web应用中使用。
三、2EE5.0标准正式发布以后,持久化框架标准Java Persistent API(简称JPA)基本上是参考Hibernate实现的,而Hibernate在3.2版本开始,已经完全兼容JPA标准。
四、Hibernate是一个以LGPL(Lesser GNU Public License)许可证形式发布的开源项目。在Hibernate官网上有下载Hibernate包的说明。Hibernate包以源代码或者二进制的形式提供。
数据库查询排序 常用Team.java
[java] view plain copy
package com.fgh.hibernate
import java.util.HashMap
import java.util.Map
public class Team {
private String id
private String name
private Map students = new HashMap()
public String getId() {
return id
}
public void setId(String id) {
this.id = id
}
public String getName() {
return name
}
public void setName(String name) {
this.name = name
}
public Map getStudents() {
return students
}
public void setStudents(Map students) {
this.students = students
}
}
hibernate.cfg.xml
[html] view plain copy
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE hibernate-configuration PUBLIC
"-//Hibernate/Hibernate Configuration DTD 3.0//EN"
"http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
<!-- Generated by MyEclipse Hibernate Tools. -->
<hibernate-configuration>
<session-factory>
<property name="connection.url">
jdbc:mysql://localhost:3306/hibernate
</property>
<property name="connection.username">root</property>
<property name="connection.password">root</property>
<property name="connection.driver_class">
com.mysql.jdbc.Driver
</property>
<property name="dialect">
org.hibernate.dialect.MySQLDialect
</property>
<property name="show_sql">true</property>
<mapping resource="Team.hbm.xml" />
</session-factory>
</hibernate-configuration>
Team.hbm.xml
[html] view plain copy
<?xml version="1.0"?>
<!DOCTYPE hibernate-mapping PUBLIC
"-//Hibernate/Hibernate Mapping DTD 3.0//EN"
"http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">
<hibernate-mapping>
<class name="com.fgh.hibernate.Team" table="team_map">
<id name="id" column="id" type="string">
<generator class="uuid"></generator>
</id>
<property name="name" column="name" type="string"></property>
<strong><span style="font-size:18pxcolor:#ff6666"><!-- order-by 指按数据库排序 属性值是数据库中的字段名 不是属性名 默认是按升序排序--></span></strong>
<map name="students" table="student_map"<strong><span style="color:#ff0000"><span style="font-size:18px">order-by="name desc"</span></span></strong>>
<key column="team_id"></key>
<index column="name" type="java.lang.String"></index><!-- 指定的是map中的key -->
<element column="value" type="java.lang.String"></element><!-- 指定的是map中的value -->
</map>
</class>
</hibernate-mapping>
建表类:CreateTable.java
[java] view plain copy
package com.fgh.hibernate
import org.hibernate.cfg.Configuration
import org.hibernate.tool.hbm2ddl.SchemaExport
public class CreateTable {
public static void main(String[] args) {
SchemaExport export = new SchemaExport(new Configuration().configure())
export.create(true, true)
}
}
测试类:
InsertTest.java
[java] view plain copy
package com.fgh.hibernate
import java.util.Collection
import java.util.Iterator
import java.util.Map
import org.hibernate.Session
import org.hibernate.SessionFactory
import org.hibernate.Transaction
import org.hibernate.cfg.Configuration
public class InsertTest {
private static SessionFactory sessionFactory
static {
try {
sessionFactory = new Configuration().configure()
.buildSessionFactory()
} catch (Exception e) {
e.printStackTrace()
}
}
public static void main(String[] args) {
Session session = sessionFactory.openSession()
Transaction tx = null
try {
// 保存 *** 作
// Team team = new Team()
// team.setName("team1")
//
// HashMap map = (HashMap) team.getStudents()
// map.put("aa", "zhangsan")
// map.put("bb", "lisi")
// map.put("ccc", "wangwu")
tx = session.beginTransaction()
// 查询 *** 作 这里使用uniqueResult()方法返回一个唯一的对象
// 而不是返回list 方便 Team 和 name 都是指类里面的属性
Team team = (Team) session.createQuery(
"from Team t where t.name = 'team1'").uniqueResult()
Map map = team.getStudents()
Collection collection = map.values()
Iterator iterator = collection.iterator()
while (iterator.hasNext()) {
System.out.println(iterator.next())
}
tx.commit()
} catch (Exception e) {
e.printStackTrace()
if (null != tx) {
tx.rollback()
}
} finally {
session.close()
}
}
}
后台打印sql:
[sql] view plain copy
Hibernate: select team0_.id as id0_, team0_.name as name0_ from team_map team0_ where team0_.name='team1'
Hibernate: select students0_.team_id as team1_0_, students0_.value as value0_, students0_.name as name0_ from student_map students0_ where students0_.team_id=? order by students0_.name desc
wangwu
lisi
zhangsan
转录:从点到面,讲讲hibernate查询的6种方法。分别是HQL查询
,对象化查询Criteria方法,动态查询DetachedCriteria,例子查询,sql查询,命名查询。
如果单纯的使用hibernate查询数据库只需要懂其中的一项就可以完成想要实现的一般功能,但是
从一个点,让我们掌握6中方法,则提供了更多选择。每一种方法都有其适用的情况与前提。
HQL查询
HQL是hibernate自己的一套查询语言,于SQL语法不同,具有跨数据库的优点。示例代码:
static void query(String name){
Session s=null
try{
s=HibernateUtil.getSession()
//from后面是对象,不是表名
String hql="from Admin as admin where admin.aname=:name"//使用命名参数,推荐使用,易读。
Query query=s.createQuery(hql)
query.setString("name", name)
List<Admin>list=query.list()
for(Admin admin:list){
System.out.println(admin.getAname())
}
}finally{
if(s!=null)
s.close()
}
}
适用情况:常用方法,比较传统,类似jdbc。缺点:新的查询语言,适用面有限,仅适用于Hibernate框架。
对象化查询Criteria方法:
static void cri(String name,String password){
Session s=null
try{
s=HibernateUtil.getSession()
Criteria c=s.createCriteria(Admin.class)
c.add(Restrictions.eq("aname",name))//eq是等于,gt是大于,lt是小于,or是或
c.add(Restrictions.eq("apassword", password))
List<Admin>list=c.list()
for(Admin admin:list){
System.out.println(admin.getAname())
}
}finally{
if(s!=null)
s.close()
}
}
适用情况:面向对象 *** 作,革新了以前的数据库 *** 作方式,易读。缺点:适用面较HQL有限。
动态分离查询DetachedCriteria
static List dc(DetachedCriteria dc) {
Session s = HibernateUtil.getSession()
Criteria c = dc.getExecutableCriteria(s)
List rs = c.list()
s.close()
return rs
}
DetachedCriteria dc = DetachedCriteria.forClass(User.class)
int id = 1
if (id != 0)
dc.add(Restrictions.eq("id", id))
Date age = new Date()
if (age != null)
dc.add(Restrictions.le("birthday", age))
List users = dc(dc)
System.out.println("离线查询返回结果:" + users)
适用情况:面向对象 *** 作,分离业务与底层,不需要字段属性摄入到Dao实现层。 缺点:适用面较HQL有限。
例子查询
static List example(User user) {
Session s = HibernateUtil.getSession()
List<User>users = s.createCriteria(User.class).add(
Example.create(user)).list()
// List<User>
// users2=s.createCriteria(User.class).add((Example.create(user)).ignoreCase())
// .createCriteria("child").add((Example.create(user))).list()
return users
}
适用情况:面向对象 *** 作。 缺点:适用面较HQL有限,不推荐。
sql查询
static List sql() {
Session s = HibernateUtil.getSession()
Query q = s.createSQLQuery("select * from user").addEntity(User.class)
List<User>rs = q.list()
s.close()
return rs
}
适用情况:不熟悉HQL的朋友,又不打算转数据库平台的朋友,万能方法 缺点:破坏跨平台,不易维护,不面向对象。
命名查询
static List namedQuery(int id) {
Session s = HibernateUtil.getSession()
Query q = s.getNamedQuery("getUserById")
q.setInteger("id", id)
return q.list()
}
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN"
"http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">
<hibernate-mapping>
<class name="com.sy.vo.User" table="user" catalog="news">
</class>
<!-- 命名查询:定义查询条件 -->
<query name="getUserById">
<![CDATA[from User where id=:id]]>
</query>
<!-- 命名查询中使用sql,不推荐使用,影响跨数据库
<sql-query name="getUserById2">
<![CDATA[select * from User where ]]>
</sql-query>-->
</hibernate-mapping>
适用情况:万能方法,有点像ibatis轻量级框架的 *** 作,方便维护。 缺点:不面向对象。基于hql和sql,有一定缺陷。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)