Re: Struts 2 Application Approach.

2007-06-04 Thread Josh Vickery
Where do your domain classes fit into your structure? I suggest thinking about whether you need those "helper" classes (I'm assuming this is something like a Service Layer) or whether the logic that you are planning on putting in the "helper" classes would be better placed in your domain classes.

RE: Struts 2 Application Approach.

2007-06-04 Thread Al Sutton
My recommendation would be to keep the separation, that way if you wish to add further front-ends (such as SOAP, Message Queues, etc., etc.) you can construct the necessary equivalents to the Action objects for those front ends and still re-use the business logic in the Helper classes. -Origin