Model-Glue 2.0 ("Unity") Beta 2 Update
Posted by Joe Rinehart at 8:12 AM
15 comments - Categories:
Model-Glue
I'm making progress towards a second beta of Model-Glue 2.0. Most of the tickets are closed, and I'm working on documentation.
Currently, I hope to release the second Beta in the first week of the new year.
This next bit is important.
If you've developed applications using Beta 1 that use ORM services, and you get the latest code from SVN, your application will crash.
This is because I've moved a few bits of Reactor-specific ORM configuration out of the core files and into the application's ColdSpring.xml file.
To get things running again, add the following to your ColdSpring.xml file. This is part of what I'm working on documenting (in a new help doc entitled "Using Model-Glue with the Reactor ORM Framework").
<constructor-arg name="framework"><ref bean="ModelGlue" /></constructor-arg>
</bean>
<bean id="ormService" class="reactor.reactorFactory">
<constructor-arg name="configuration"><ref bean="reactorConfiguration" /></constructor-arg>
</bean>
Damon wrote on 12/27/06 12:09 PM
You should put this info into Trac with the revision info.