• Hibernate之Hello World篇


    1.For sure, 我们数据库中建立一张student的表。

    2.建立student对应的class对象并生成setter和getter方法。

    3.新建类与数据库的关联文件,student.hbm.xml,可以用其他名字,当然不建议修改。

    4.新建hibernate的配置文件,hibernate.cfg.xml,在此文件中注册数据库JDBC信息,让hibernate帮我们连接数据库,修改方言(Dialet)为匹配的数据库。在Mapping中写入类与数据库关联文件的索引。



    5.接下来就是TestStudent的编写。

        *新建Configuration cfg

        *cfg读入配置文件,cfg.configure()然后创建SessionFactory。

        *由SessionFactory创建一个Session session.

        *Hibernate里面的数据库操作都是Transaction。由session打开Transaction,接着SAVE对象,然后让trasaction提交。


    -------------------------------------------------------------------------华丽的分界线----------------------------------------------------------------------


    利用Annotation的写法。

    还是student类,这个我们添加Annotation。

    package hibernate.source;
    
    import javax.persistence.Entity;
    import javax.persistence.Id;
    
    @Entity
    public class student {
    	private int id;
    	private String name;
    	private int age;
    	@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 int getAge() {
    		return age;
    	}
    	public void setAge(int age) {
    		this.age = age;
    	}
    	
    }
    


    这里我们在类名处和Id的地方添加了声明。@Entity和主键@Id,需要引入javax.presistence.*这个包。


    这样我们就不需要《student.hbm.xml 》配置文件了,我们只需要在hibernate.cfg.xml文件中这样Mapping一下。

            <!--mapping resource="hibernate/source/student.hbm.xml"/-->
    	<mapping class="hibernate.source.student"/>


    这样就大功告成了。其他地方就不用改了。

  • 相关阅读:
    [Bullet3]创建世界(场景)及常见函数
    [erlang]supervisor(监控树)的重启策略
    [game]十字链表的AOI算法实现
    [翻译][erlang]cowboy handler模块的使用
    数据挖掘算法系列目录
    Spark原理分析目录
    Spark实战系列目录
    2019年读书书单
    Hadoop源码解读系列目录
    分布式架构系列目录
  • 原文地址:https://www.cnblogs.com/jackhub/p/3147222.html
Copyright © 2020-2023  润新知