forked from antohasv/GeoPrj
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhibernate.cfg.xml
More file actions
14 lines (14 loc) · 829 Bytes
/
hibernate.cfg.xml
File metadata and controls
14 lines (14 loc) · 829 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<hibernate-configuration>
<session-factory>
<!-- Database connection settings -->
<property name="connection.driver_class">com.mysql.jdbc.Driver</property>
<property name="connection.url">jdbc:mysql://localhost/geo</property>
<property name="connection.username">root</property>
<property name="connection.password"></property>
<property name="connection.pool_size">1</property>
<property name="current_session_context_class">thread</property>
<property name="show_sql">true</property>
<property name="dialect">org.hibernate.dialect.MySQL5Dialect</property>
<mapping class="server.dbService.tables.User" />
</session-factory>
</hibernate-configuration>