Statistics
| Branch: | Revision:

m2u-upass-min / src / main / resources / hibernate.maybank-dev.cfg.xml @ 114:ee42cd030ee0

History | View | Annotate | Download (3.07 KB)

1 17:558c3496b87e mohd
<?xml version='1.0' encoding='utf-8'?>
2
<!DOCTYPE hibernate-configuration PUBLIC "-//Hibernate/Hibernate Configuration DTD 3.0//EN"
3
                                         "http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
4
5
<hibernate-configuration>
6
        <session-factory>
7
                <!-- Database connection settings -->
8
9 60:53a6283b51e6 hadi
                 <property name="connection.url">jdbc:oracle:thin:@172.31.11.50:1521:ibd</property>
10 17:558c3496b87e mohd
                <property name="hibernate.connection.username">upassdev</property>
11
                <property name="hibernate.connection.password">upassdev</property>
12 60:53a6283b51e6 hadi
                <property name="connection.driver_class">oracle.jdbc.driver.OracleDriver</property>
13 17:558c3496b87e mohd
14
                <!-- Database connection settings -->
15
                <!-- SQL dialect -->
16 60:53a6283b51e6 hadi
                <property name="dialect">org.hibernate.dialect.Oracle10gDialect</property>
17 17:558c3496b87e mohd
18 107:f40787ab3b25 hadi
                <!-- Use the C3P0 connection pool provider -->
19
                <property name="connection.provider_class">org.hibernate.connection.C3P0ConnectionProvider</property>
20
                <property name="hibernate.c3p0.acquire_increment">5</property>
21
                <property name="hibernate.c3p0.min_size">20</property>
22
                <property name="hibernate.c3p0.max_size">50</property>
23
                <property name="hibernate.c3p0.timeout">120</property>
24
                <property name="hibernate.c3p0.max_statements">0</property>
25
26 17:558c3496b87e mohd
                <!-- Enable Hibernate's automatic session context management -->
27
                <property name="current_session_context_class">thread</property>
28
29
                <!-- Disable the second-level cache -->
30
                <property name="cache.provider_class">org.hibernate.cache.NoCacheProvider</property>
31
32
                <!-- Echo all executed SQL to stdout -->
33
                <property name="show_sql">false</property>
34
                <property name="format_sql">true</property>
35
36
                <property name="hibernate.hbm2ddl.auto">none</property>
37
38
                <!-- Mapping files -->
39
                <mapping resource="my/com/upass/hibernate/TbAmUsermas.hbm.xml" />
40
                <mapping resource="my/com/upass/hibernate/TbAmUser.hbm.xml" />
41
                <mapping resource="my/com/upass/hibernate/TbAmTac.hbm.xml" />
42
                <mapping resource="my/com/upass/hibernate/TbAmAppserv.hbm.xml" />
43
                <mapping resource="my/com/upass/hibernate/TbAmConfig.hbm.xml" />
44
                <mapping resource="my/com/upass/hibernate/TbAmSecurityCode.hbm.xml" />
45
                <mapping resource="my/com/upass/hibernate/TbAmUserBackup.hbm.xml" />
46
                <mapping resource="my/com/upass/hibernate/TbAmUsermasBackup.hbm.xml" />
47
                <mapping resource="my/com/upass/hibernate/TbAmTacBackup.hbm.xml" />
48
                <!--
49
                <mapping resource="my/com/upass/hibernate/TbAmGemalto.hbm.xml" />
50
                <mapping resource="my/com/upass/hibernate/TbAmVasco.hbm.xml" />
51
                 -->
52 26:293694ae0d71 mohd
53
                <mapping resource="my/com/upass/hibernate/ClientApp.hbm.xml" />
54
                <mapping resource="my/com/upass/hibernate/UserAppAccess.hbm.xml" />
55 27:1a2f464f8c1c hadi
                <mapping resource="my/com/upass/maybank/entities/hibernate/IbccUser.hbm.xml" />
56 26:293694ae0d71 mohd
                <mapping resource="my/com/upass/maybank/entities/hibernate/Im2uUser.hbm.xml" />
57
                <mapping resource="my/com/upass/maybank/entities/hibernate/M2uUser.hbm.xml" />
58
                <mapping resource="my/com/upass/maybank/entities/hibernate/StockUser.hbm.xml" />
59
                <mapping resource="my/com/upass/maybank/entities/hibernate/TicketingUser.hbm.xml" />
60 17:558c3496b87e mohd
        </session-factory>
61
</hibernate-configuration>