Hi,
I have my database access configured using Spring and I inject relevant
spring:objects into Tapestry pages. Now I have also a custom EngineService
which I succeeded to instantiate using hivemind.xml quite blindly - looking
at/copying from examples. The problem is that I need spring object to be
injected into that service (as the service pulls data from the database).
Currently, to get access to Spring object in my EngineService's service
method I have to use hack like
((SomePage)cycle.getPage("SomePage)).getSpringObject()
All works fine except, of course, it's ugly, and sure must be done some
other way.
Any help will be appreciated,
TYA