My favorites | Sign in
Project Logo
                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE hibernate-configuration SYSTEM "http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">

<hibernate-configuration>
<session-factory>

<property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property>
<property name="hibernate.connection.url">jdbc:mysql://localhost/dalal_street</property>
<property name="hibernate.dialect">org.hibernate.dialect.MySQLDialect</property>
<property name="hibernate.connection.username">username</property>
<property name="hibernate.connection.password">password</property>

<property name="hibernate.show_sql">false</property>
<property name="hibernate.format_sql">false</property>

<mapping class="org.ds.biz.user.Customer"/>
<mapping class="org.ds.biz.user.Address"/>
<mapping class="org.ds.biz.user.ContactInformation"/>
<mapping class="org.ds.biz.user.AccountTransaction"/>
<mapping class="org.ds.biz.user.MoneyTransaction"/>
<mapping class="org.ds.biz.user.StockTransaction"/>
</session-factory>
</hibernate-configuration>
Show details Hide details

Change log

r50 by kartick.suriamoorthy on Jun 23, 2009   Diff
added accounttransaction,
stocktransaction, and moneytransaction
classes.
Go to: 
Project members, sign in to write a code review

Older revisions

r14 by kartick.suriamoorthy on Apr 24, 2009   Diff
initial checkin of hibernate
configuration properties.
All revisions of this file

File info

Size: 1051 bytes, 22 lines
Hosted by Google Code