hi Jobby
I think you are new to struts framework , there is not much difficulty in using struts framework in J2ee and WSAD.
let me explain how the flow goes if you want use struts with j2ee. I suppose that you are familiar with the basics of struts and ejbs.
In struts framework you have three layes i.e MVC . Your frontend comes in view which remain same in this case also. your next step is ACTION classes where you write your businees logic and call your databases .
now take the case of you are using j2ee i.e entity beans, session beans etc.
you know that your businees logic is fully impleimented in session beans and your client calls your session bean method through rmi and in that case your session bean interact with entity bean for any datbase interaction. this how the flow if you are doing a simple application in j2ee.\
Lets now take struts in your application,
1: Your frontend interacts with your action classes .
2:Your action classes acts as client for your session bean and hence interact with your session bean methods (Note here your business logic is now in session bean and you just call taht logic in action class which give response for the request from the clint)
3: Your sesion beans interact with entity beans for any database interaction.
now in short>>>>>
jsp are client for action classes ,
action classes are client for session beans
session beans are client for entiy beans
It is upto you if you want to put different
patterns in between these layers
the best known pattern in this case is service locator pattern
I think you are clear with basic concept
Any further help you can post here or mail me at
catchpankaj_n@yahoo.co.in Best Regards
Pankaj