-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhibernate.cfg.xml
49 lines (44 loc) · 2.7 KB
/
hibernate.cfg.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<?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">
<!-- Generated by MyEclipse Hibernate Tools. -->
<hibernate-configuration>
<session-factory>
<!--C3P0配置 -->
<property name="hibernate.connection.provider_class">org.hibernate.connection.C3P0ConnectionProvider</property>
<property name="hibernate.c3p0.max_size">20</property>
<property name="hibernate.c3p0.min_size">5</property>
<property name="hibernate.c3p0.timeout">120</property>
<property name="automaticTestTable">Test</property>
<property name="hibernate.c3p0.max_statements">100</property>
<property name="hibernate.c3p0.idle_test_period">120</property>
<property name="hibernate.c3p0.acquire_increment">1</property>
<property name="c3p0.testConnectionOnCheckout">true</property>
<property name="c3p0.idleConnectionTestPeriod">18000</property>
<property name="c3p0.maxIdleTime">25000</property>
<property name="c3p0.idle_test_period">120</property>
<property name="show_sql">true</property>
<property name="dialect">org.hibernate.dialect.MySQLDialect</property>
<property name="connection.driver_class">com.mysql.jdbc.Driver</property>
<property name="connection.url">jdbc:mysql://localhost:3306/ordinarydraw</property>
<property name="connection.username">root</property>
<property name="connection.password">root</property>
<property name="connection.driver_class">com.mysql.jdbc.Driver</property>
<property name="dialect">org.hibernate.dialect.MySQLDialect</property>
<mapping resource="cn/edu/ynu/ordinarydraw/domain/Cart.hbm.xml" />
<mapping resource="cn/edu/ynu/ordinarydraw/domain/Comment.hbm.xml" />
<mapping resource="cn/edu/ynu/ordinarydraw/domain/Follow.hbm.xml" />
<mapping resource="cn/edu/ynu/ordinarydraw/domain/Goods.hbm.xml" />
<mapping resource="cn/edu/ynu/ordinarydraw/domain/GoodsImg.hbm.xml" />
<mapping resource="cn/edu/ynu/ordinarydraw/domain/GoodsTag.hbm.xml" />
<mapping resource="cn/edu/ynu/ordinarydraw/domain/Like.hbm.xml" />
<mapping resource="cn/edu/ynu/ordinarydraw/domain/Order.hbm.xml" />
<mapping resource="cn/edu/ynu/ordinarydraw/domain/OrderItem.hbm.xml" />
<mapping resource="cn/edu/ynu/ordinarydraw/domain/Report.hbm.xml" />
<mapping resource="cn/edu/ynu/ordinarydraw/domain/SaleHistory.hbm.xml" />
<mapping resource="cn/edu/ynu/ordinarydraw/domain/Subscribe.hbm.xml" />
<mapping resource="cn/edu/ynu/ordinarydraw/domain/Tag.hbm.xml" />
<mapping resource="cn/edu/ynu/ordinarydraw/domain/User.hbm.xml" />
</session-factory>
</hibernate-configuration>