Hibernate的两种数据库配置文件及使用方法

第一种:使用hibernate.properties

hibernate.connection.url=jdbc:sqlserver://localhost:1433;DatabaseName=Student
hibernate.connection.driver_class=com.microsoft.sqlserver.jdbc.SQLServerDriver
hibernate.connection.username=sa
hibernate.connection.password=123
hibernate.dialect=org.hibernate.dialect.SQLServerDialect
hibernate.show_sql=false

使用这种方式时,SessionFactory的创建如下:

Configuration config = new Configuration();
config.addClass(Student.class); // 加载同名Form的Class
sessionFactory = config.buildSessionFactory();// 创建sessionFactory

第二种:使用hibernate.cfg.xml

 

 
 version="1.0"?>

    "-//Hibernate/Hibernate Configuration DTD//EN"
    "http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
>
    >
         name="hibernate.connection.url">jdbc:sqlserver://localhost:1433;DatabaseName=Student>
         name="hibernate.connection.driver_class">com.microsoft.sqlserver.jdbc.SQLServerDriver>
         name="hibernate.connection.username">sa>
         name="hibernate.connection.password">123>
         name="hibernate.dialect">org.hibernate.dialect.SQLServerDialect>
         name="hibernate.show_sql">true>
         resource="com/dys/hibernateStruts/Student.hbm.xml"/>
    >
>
使用这种方式时,SessionFactory的创建如下:
Configuration config = new Configuration(); 
sessionFactory = config.configure().buildSessionFactory();// 创建sessionFactory
区别在于,使用第二种时,创建SessionFactory之前要先配置,即需要config.configure()之后再buildSessionFactory()

 

 

你可能感兴趣的:(Hibernate知识汇总,hibernate,数据库,sqlserver,jdbc,class,sql)