SSH之hibernat配置文件配置


<!DOCTYPE hibernate-configuration PUBLIC
"-//Hibernate/Hibernate Configuration DTD//EN"
"http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd">
<hibernate-configuration>
        <session-factory>
                <property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property>
                <property name="hibernate.connection.url">jdbc:mysql://localhost:3306/bbs</property>
                <property name="hibernate.connection.username">root</property>
                <property name="hibernate.connection.password">1234</property>
                
                <property name="dialect">org.hibernate.dialect.MySQLDialect</property>
                <property name="hibernate.show_sql">true</property>
                <property name="hibernate.format_sql">true</property>
                
                <mapping resource="com/andy/bbs/database/vo/User.hbm.xml"/>
        </session-factory>
</hibernate-configuration>
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章