forked from maxliaops/Java_Web_Examples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhibernate.cfg.xml
More file actions
19 lines (19 loc) · 1.01 KB
/
hibernate.cfg.xml
File metadata and controls
19 lines (19 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE hibernate-configuration PUBLIC
"-//Hibernate/Hibernate Configuration DTD 3.0//EN"
"http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
<hibernate-configuration>
<session-factory>
<property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property>
<property name="hibernate.connection.password">111</property>
<property name="hibernate.connection.url">jdbc:mysql://localhost:3306/db_database23</property>
<property name="hibernate.connection.username">root</property>
<property name="hibernate.dialect">org.hibernate.dialect.MySQLDialect</property>
<property name="hibernate.hbm2ddl.auto">update</property>
<mapping resource="com/hrl/model/User.hbm.xml" />
<mapping resource="com/hrl/model/Article.hbm.xml" />
<mapping resource="com/hrl/model/Reply.hbm.xml" />
<mapping resource="com/hrl/model/Scan.hbm.xml" />
<mapping resource="com/hrl/model/ArticleType.hbm.xml" />
</session-factory>
</hibernate-configuration>