欢迎来到天天文库
浏览记录
ID:17558315
大小:36.00 KB
页数:10页
时间:2018-09-03
《hibernate阅读笔记(2) 关联映射》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
1、hibernate阅读笔记(2)关联映射在学习hibernate的过程中首先感觉它的配置更多了应用也更加灵活了。1、首先是hibernate.cfg.xml配置在这个文件里面可以配置多个数据库(当然我没有应用过),下面的就是mysql数据库的配置内容:com.mysql.jdbc.Driver2、bernate.connection.url">jdbc:mysql://localhost/hibernate_firstrootrain3、name="hibernate.dialect">org.hibernate.dialect.MySQLDialecttrue2、其次再看ORMapingORMaping其实就是将实体映射为数据库中的表每个标签对应一个实体类
2、bernate.connection.url">jdbc:mysql://localhost/hibernate_firstrootrain3、name="hibernate.dialect">org.hibernate.dialect.MySQLDialecttrue
3、name="hibernate.dialect">org.hibernate.dialect.MySQLDialect
4、标签对应是表的主键,generator是设置主键的生成策略,其中常用的生成策略有uuid、native、assign三种,其中uuid是hibernate自己生成的一个字符串,native可以自动匹配不同的数据库来生产主键,assign是手动分配。cloumn是设置表的列名,如不显示设置则和name的名称相同。3、工具类在hibernate的应用中主要有三个工具类(1)CreateDB.java,此类是根据配置文件映射生成表packagecom
5、.dne.managedb;importorg.hibernate.cfg.Configuration;importorg.hibernate.tool.hbm2ddl.SchemaExport;publicclassCreateDB{/***@author刘景玉*@createTime2008-11-3*/publicstaticvoidmain(String[]args){//读取hibernate.cfg.xml文件Configurationcfg=newConfiguration().configure();//根据配置文件创建表S
6、chemaExportschemaExport=newSchemaExport(cfg);schemaExport.create(true,true);}}(2)HibernateUtils.java由于SessionFactory的创建是比较耗时的因此在应用中一般只创建一次,又因为SessionFactory是线程安全的,估可以放心使用packagecom.dne.managedb;importorg.hibernate.Session;importorg.hibernate.SessionFactory;importorg.hibern
7、ate.cfg.Configuration;/****@authorliujy*@createtime2008-11-3*/publicclassHibernateUtils{privatestaticSessionFactorysessionFactory;static{try{Configurationcfg=newConfiguration().configure();sessionFactory=cfg.buildSessionFactory();}catch(Exceptione){e.printStackTrace();}}pu
8、blicstaticSessionFactorygetSessionFactory(){returnsessionFactory;}publicstaticSessiongetS
此文档下载收益归作者所有