• hibernate Annotation 注解形式 实例 事务 hibernate.cfg.xml


    实体类:

    import javax.persistence.Entity;
    import javax.persistence.Id;
    
    
    @Entity
    public class foo {
    	
    
    	private int id;
    	private String name;
    	private String total;
    	
    	@Id
    	public int getId() {
    		return id;
    	}
    	public void setId(int id) {
    		this.id = id;
    	}
    	public String getName() {
    		return name;
    	}
    	public void setName(String name) {
    		this.name = name;
    	}
    	public String getTotal() {
    		return total;
    	}
    	public void setTotal(String total) {
    		this.total = total;
    	}
    }
    


    特别要注意配置文件的申请,一般是:

     <mapping resource="com/model/foo.hbm.xml"/>


    使用Annotation 注解形式就要写成:

    <mapping class = "com.model.foo.hbm.xml"/>


    还有在实例化的时候,要写成:

    Configuration configuration = new AnnotationConfiguration();

    只有AnnotationConfiguration可以认识注解形式的实体类。


    完整调用类:

    import org.hibernate.Session;
    import org.hibernate.SessionFactory;
    import org.hibernate.cfg.AnnotationConfiguration;
    import org.hibernate.cfg.Configuration;
    
    
    public class test1 {
    
    	/**
    	 * @param args
    	 */
    	public static void main(String[] args) {
    		// TODO Auto-generated method stub
    		foo s = new foo;
    		s.setId(1);
    		s.setName(2);
    		S.settotal(ss);
    		
    		Configuration configuration = new AnnotationConfiguration();
    		SessionFactory sessionFactory = configuration.buildSessionFactory();
    		Session session = sessionFactory.openSession();
    		
    		//用事务方式储存\
    		session.beginTransaction();
    		session.save(s);
    		session.getTransaction().commit();
    		session.close();
    		
    		//sessionFactory也要关闭
    		sessionFactory.close();
    		
    		
    	}
    
    }


  • 相关阅读:
    多条件搜索问题 -sql拼接与参数化查询
    MVC View中获取action、controller、area名称、参数
    Hadoop权限认证的执行流程
    Java API操作HA方式下的Hadoop
    利用HBase的快照功能来修改表名
    hive两大表关联优化试验
    Spark SQL与Hive on Spark的比较
    Spark的RDD原理以及2.0特性的介绍
    hbase Java API 介绍及使用示例
    初识Spark2.0之Spark SQL
  • 原文地址:https://www.cnblogs.com/xiaowangba/p/6314254.html
Copyright © 2020-2023  润新知