Re: [appfuse-user] Where/How to write business logic in AppFuse

2008-08-19 Thread Dustin Pearce
Many people use the Manager pattern to write their business logic. This acts a service layer that can be used by your Struts actions, but could also be called by other interfaces (batch processes, web service, etc). In Appfuse these Manager classes are used to create transactions across m

[appfuse-user] Where/How to write business logic in AppFuse

2008-08-19 Thread krishgy
Hi All, I have AppFuse (Basic Struts, Hibernate and Spring) project. I use Jetty as a web server. I want to know where to write the business logic code outside my Hibernate Dao implementation? I do not want to write the business logic in the action classes. How to achieve this? Thanks in adva