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
997 B
22 lines
997 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.MySQLDialect</property>
|
|
|
|
<!-- Database Connection Settings -->
|
|
<property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property>
|
|
<property name="hibernate.connection.datasource">java:comp/env/jdbc/clubhelperbackend</property>
|
|
<property name="cache.providerclass">org.hibernate.NoCacheProvider</property>
|
|
<property name="show_sql">true</property>
|
|
|
|
<!-- Specifying Session Context -->
|
|
<property name="hibernate.current_session_context_class">org.hibernate.context.internal.ThreadLocalSessionContext</property>
|
|
|
|
<!-- <mapping resource="schema/ClubEvent.hbm.xml"></mapping> -->
|
|
</session-factory>
|
|
</hibernate-configuration>
|
|
|