Hibernate核心API
2021-04-03 15:24
标签:方法 from list() sele custom creates 维护 serial lang (1)Configuration:Hibernate的配置对象: Configuration类的作用是对Hibernate进行配置,以及对它进行启动。在Hibernate的启动过程中,Configuration类的实例首先定位映射文档的位置,读取这些配置,然后创建一个SessionFactory对象。虽然Configuration类在整个Hibernate项目中只扮演着一个很小的角色,但它是启动Hibernate时所遇到的第一个对象。 作用: 加载核心配置文件。 1.hibernate.properties 2.hibernate.cfg.xml 加载映射文件: (2).SessionFactory:Session工厂 SessionFactory内部维护了Hibernate的连接池和HIbernate的二级缓存。是线程安全的对象。一个项目创建一个对象即可。 (了解)配置c3p0连接池: 抽取工具类: 为了简化初始化session工厂。 (3)Session:类似Connection对象是连接对象 Session代表的是Hibernate与数据库的连接对象。非线程安全的。是与数据库交互的桥梁。 Session中的API: 保存方法: Serializable save(Object obj); 查询方法: T get(Class c,Serializable id); T load(Class c,Serializable id); get和load方法的区别? get方法和load方法的区别: load方法: 删除方法: void delete(Object obj); 保存和更新: void saveOrUpdate(Object obj); 查询数据库所有: Hibernate核心API 标签:方法 from list() sele custom creates 维护 serial lang 原文地址:https://www.cnblogs.com/crazypokerk/p/9201263.htmlConfiguration cfg = new Configuration().configure();
Configuration cfg = new Configuration().configure();
//手动加载映射文件:
configuration.addResource("com/hibernate/demo1/Customer.hbm.xml");
property name="connection.provider_class">org.hibernate.connection.C3P0ConnectionProviderproperty>
property name="c3p0.min_size">5property>
property name="c3p0.max_size">20property>
property name="c3p0.timeout">120property>
property name="c3p0.idle_test_period">3000property>
public class HibernateUtils {
public static final Configuration cfg;
public static final SessionFactory sf;
static{
cfg = new Configuration().configure();
sf = cfg.buildSessionFactory();
}
public static Session openSession(){
return sf.openSession();
}
}
//使用get方法查询
Customer customer = session.get(Customer.class, 2l);
System.out.println(customer);
//使用load方法查询
Customer customer = session.load(Customer.class, 1l);
System.out.println(customer.getCust_id());
get方法:
@Test
public void demo04() {
//删除
Session session = HibernateUtils.openSession();
Transaction transaction = session.beginTransaction();
//直接创建对象,删除
/*Customer customer = new Customer();
customer.setCust_id(1l);
session.delete(customer);*/
//先查询再删除(推荐)
Customer customer = session.get(Customer.class, 1l);
session.delete(customer);
transaction.commit();
session.close();
}
@Test
public void demo05() {
//保存或更新
Session session = HibernateUtils.openSession();
Transaction transaction = session.beginTransaction();
Customer customer = new Customer();
customer.setCust_name("瓜皮");
session.saveOrUpdate(customer);
transaction.commit();
session.close();
}
@Test
public void demo06() {
//查询所有
Session session = HibernateUtils.openSession();
Transaction transaction = session.beginTransaction();
//接收HQL:Hibernate Query Language 面向对象的查询语言
Query query = session.createQuery("from Customer");
List