forked from jkunlin/ssh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhibernate.cfg.xml
21 lines (19 loc) · 1023 Bytes
/
hibernate.cfg.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE hibernate-configuration PUBLIC
"-//Hibernate/Hibernate Configuration DTD 3.0//EN"
"http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd">
<hibernate-configuration><session-factory>
<property name="connection.driver_class">com.mysql.jdbc.Driver</property>
<property name="connection.url">jdbc:mysql://localhost:3306/storyfm</property>
<property name="connection.username">root</property>
<property name="connection.password">root</property>
<property name="dialect">org.hibernate.dialect.MySQLDialect</property>
<property name="hbm2dll.auto">update</property>
<property name="javax.persistence.validation.mode">none</property>
<property name="show_sql">true</property>
<mapping resource="com/bean/User.hbm.xml"/>
<mapping resource="com/bean/Journal.hbm.xml"/>
<mapping resource="com/bean/Article.hbm.xml"/>
<mapping resource="com/bean/Chapter.hbm.xml"/>
<mapping resource="com/bean/Paragraph.hbm.xml"/>
</session-factory></hibernate-configuration>