zoukankan      html  css  js  c++  java
  • Hibernate查询方式&抓取策略

    Hibernate的查询方式

    1、OID查询

    hibernate根据对象的OID(主键)进行检索

      使用get方法

    Customer customer=session.get(Customer.class,1l); 
    

      使用load方法

    Customer customer=session.load(Customer.class,1l); 
    

    2、对象导航检索

    hibernate根据一个已经查询到的对象,获得其关联的对象的一种查询方式

    LinkMan linkMan=Session.get(LinkMan.class,1l);
    Customer customer=linkMan.getCustomer();
    

    3、HQL检索

    Hibernate Query Language 的查询语言,是一种面向对象的方式的查询语言,语法类似于SQL。通过session.createQuery()用于接收一个HQL进行查询

    HQL的简单查询

    	/*
    	 * HQL简单查询
    	 * */
    	public void demo2() {
    		Session session=HibernateUtils.openSession();
    		Transaction transaction=session.beginTransaction();
    		Query query=session.createQuery("from Customer");
    		List<Customer> list=query.list();
    		for(Customer customer:list)
    			System.out.println(customer.toString());
    		transaction.commit();
    	}
    

    HQL的别名查询

    	/*
    	 * HQL简单查询
    	 * */
    	public void demo2() {
    		Session session=HibernateUtils.openSession();
    		Transaction transaction=session.beginTransaction();
    		Query query=session.createQuery("from Customer c");
    		List<Customer> list=query.list();
    		for(Customer customer:list)
    			System.out.println(customer.toString());
    		transaction.commit();
    	}
    

    HQL的投影查询

    查询对象的某个或某些属性

    	public void demo6() {
    		Session session=HibernateUtils.openSession();
    		Transaction transaction=session.beginTransaction();
    		List<Object> list=session.createQuery("select c.cust_name from Customer c").list();
    		for(Object object:list)
    			System.out.println(object);
    		transaction.commit();
    	}
    

     

  • 相关阅读:
    Java 下载网络资源
    Java11 ThreadLocal的remove()方法源码分析
    软件测试的术语SRS,HLD,LLD,BD,FD,DD意义
    2020年12月2日
    20201129
    2020年11月28日
    程序员的三门课
    中间件到底是个什么鬼东西?
    接口测试框架的形成过程
    一个字符到底等于多少字节
  • 原文地址:https://www.cnblogs.com/vi3nty/p/10073270.html
Copyright © 2011-2022 走看看