You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
891 B
22 lines
891 B
<?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>
|
|
<!-- SQL Dialect
|
|
<property name="hibernate.dialect">org.hibernate.dialect.MySQL8Dialect</property>
|
|
-->
|
|
<!-- Database Connection Settings
|
|
<property name="hibernate.connection.datasource">java:comp/env/jdbc/clubhelperbackend</property>
|
|
-->
|
|
<property name="show_sql">true</property>
|
|
<property name="format_sql">true</property>
|
|
<property name="use_sql_comments">true</property>
|
|
|
|
<!-- Specifying Session Context -->
|
|
<property name="hibernate.current_session_context_class">org.hibernate.context.internal.JTASessionContext</property>
|
|
|
|
</session-factory>
|
|
</hibernate-configuration>
|
|
|