hibernate的配置文件有错误

时间:2016-06-23 04:56:31

标签: hibernate

<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE hibernate-configuration PUBLIC
"-//Hibernate/Hibernate Configuration DTD3.0//EN"
"http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">

<hibernate-configuration>
    <session-factory>
        <property name="hibernate.connection.driver_class">com.microsoft.sqlserver.jdbc.SQLServerDriver</property>
        <property name="hibernate.connection.url">jdbc:sqlserver://cdcvgdc2012t;DatabaseName=SMS</property>
        <property name="hibernate.connection.username">training</property>
        <property name="hibernate.connection.password">Tr@!n@n10</property>
        <property name="show_sql">true</property>
        <property name="format_sql">true</property>

        <property name="hibernate.dialect">org.hibernate.dialect.SQLServer2012Dialect</property>
        <property name="hibernate.hbm2ddl.auto">update</property>

        <property name="hibernate.transaction.factory_class">org.hibernate.transaction.JDBCTransactionFactory</property>
        <property name="hibernate.current_session_context_class">thread</property>


        <mapping resource="com/jwt/hibernate/bean/user.hbm.xml" />
    </session-factory>
</hibernate-configuration>

0 个答案:

没有答案