Salome HOME
297cc7e201daa5350f250f3549e95eb68fa89e16
[tools/siman.git] / Workspace / Siman / conf / templates / hibernate.cfg.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!DOCTYPE hibernate-configuration PUBLIC
3           "-//Hibernate/Hibernate Configuration DTD 3.0//EN"
4           "http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
5
6 <hibernate-configuration>
7
8 <!-- Generated at @datesimple@ @time@ -->
9 <!-- @file.header@ -->
10
11   <session-factory>
12     <!-- Database connection settings -->
13     <property name="connection.driver_class">com.mysql.jdbc.Driver</property>
14     <property name="connection.url">@connection.url@</property>
15     <property name="connection.username">@connection.username@</property>
16     <property name="connection.password">@connection.password@</property>
17     
18     <!-- JDBC connection pool (use the built-in) -->
19     <property name="connection.pool_size">1</property>    
20     <property name="transaction.factory_class">org.hibernate.transaction.JDBCTransactionFactory</property>
21     
22     <!-- SQL dialect -->
23     <property name="dialect">@hibernate.dialect@</property>
24
25     <!-- Enable Hibernate's automatic session context management -->
26     <property name="current_session_context_class">thread</property>
27     
28     <!-- Echo all executed SQL statements to stdout -->
29     <property name="hibernate.show_sql">@hibernate.show_sql@</property>
30
31         <!-- Hibernate automatically updates db according to the mapping -->
32         <property name="hbm2ddl.auto">@hbm2ddl.auto@</property>
33
34     <!-- mapping files -->
35     <mapping resource="org/splat/kernel/Persistent.hbm.xml" />
36     <mapping resource="org/splat/kernel/Any.hbm.xml" />
37     <mapping resource="org/splat/kernel/Entity.hbm.xml" />
38     <mapping resource="org/splat/kernel/Attribute.hbm.xml" />
39     <mapping resource="org/splat/kernel/Relation.hbm.xml" />
40     <mapping resource="org/splat/kernel/IDPool.hbm.xml" />
41     <mapping resource="org/splat/kernel/TextAttribute.hbm.xml" />
42     <mapping resource="org/splat/kernel/User.hbm.xml" />
43
44     <mapping resource="org/splat/som/ProjectElement.hbm.xml" />
45     <mapping resource="org/splat/som/Study.hbm.xml" />
46     <mapping resource="org/splat/som/Scenario.hbm.xml" />
47     <mapping resource="org/splat/som/Attributes.hbm.xml" />
48     <mapping resource="org/splat/som/Relations.hbm.xml" />
49     <mapping resource="org/splat/som/File.hbm.xml" />
50     <mapping resource="org/splat/som/Document.hbm.xml" />
51     <mapping resource="org/splat/som/Publication.hbm.xml" />
52     <mapping resource="org/splat/som/ValidationCycle.hbm.xml" />
53     <mapping resource="org/splat/som/Timestamp.hbm.xml" />
54     <mapping resource="org/splat/som/SimulationContext.hbm.xml" />
55     <mapping resource="org/splat/som/KnowledgeElement.hbm.xml" />
56     <mapping resource="org/splat/som/IDBuilder.hbm.xml" />
57
58   </session-factory>
59   
60 </hibernate-configuration>