From: <one...@us...> - 2003-02-02 00:29:10
|
Update of /cvsroot/hibernate/Hibernate2/src/net/sf/hibernate/test In directory sc8-pr-cvs1:/tmp/cvs-serv18747/net/sf/hibernate/test Modified Files: Baz.hbm.xml FooBar.hbm.xml Log Message: added support for configuring caching in .cfg.xml much saner collection role naming improved logging during startup Index: Baz.hbm.xml =================================================================== RCS file: /cvsroot/hibernate/Hibernate2/src/net/sf/hibernate/test/Baz.hbm.xml,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** Baz.hbm.xml 1 Feb 2003 10:42:29 -0000 1.8 --- Baz.hbm.xml 2 Feb 2003 00:29:06 -0000 1.9 *************** *** 109,113 **** <bag name="fooBag" lazy="true" table="baz_foo" cascade="all"> <key column="baz" /> ! <many-to-many class="net.sf.hibernate.test.Foo" column="foo" length="36" outer-join="true"/> </bag> --- 109,113 ---- <bag name="fooBag" lazy="true" table="baz_foo" cascade="all"> <key column="baz" /> ! <many-to-many class="net.sf.hibernate.test.Foo" column="foo" outer-join="true"/> </bag> Index: FooBar.hbm.xml =================================================================== RCS file: /cvsroot/hibernate/Hibernate2/src/net/sf/hibernate/test/FooBar.hbm.xml,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** FooBar.hbm.xml 25 Jan 2003 00:13:56 -0000 1.5 --- FooBar.hbm.xml 2 Feb 2003 00:29:06 -0000 1.6 *************** *** 11,15 **** dynamic-update="true"> ! <!--<jcs-cache usage="read-write"/>--> <id name="key" type="string"> --- 11,15 ---- dynamic-update="true"> ! <jcs-cache usage="read-write"/> <id name="key" type="string"> *************** *** 76,80 **** <property name="count" column="subcount"/> <property name="name" column="subname"/> ! <array name="ImportantDates" table="foo_times"> <key column="foo_id"/> <index column="i"/> --- 76,80 ---- <property name="count" column="subcount"/> <property name="name" column="subname"/> ! <array name="importantDates" table="foo_times"> <key column="foo_id"/> <index column="i"/> |