Re: Struts2 + EJB 3.0 + Hibernate

2009-11-25 Thread emil thushanga
Struts2 is good for your presentation layer. It is the MVC front controller. Accessing EJB is a kind of a challenge inside Struts2 rather than spring. Struts2 + spring + hibernate will be a good combination if it is suitable for your problem domain. Emil On Thu, Nov 26, 2009 at 12:08 PM, vikrant

Antwort: Re: Struts2 + EJB 3.0 + Hibernate

2009-11-25 Thread jheidenreich
Why is it a challenge accessing EJB in Struts2? All you need to do is to lookup your local or remote EJB interface, which is in fact 1 line of code. Joachim Struts2 is good for your presentation layer. It is the MVC front controller. Accessing EJB is a kind of a challenge inside Struts2

Re: Re: Struts2 + EJB 3.0 + Hibernate

2009-11-25 Thread emil thushanga
Ya thats true, but its not clean such as the way used in spring, or JSF managed beans. lookup service is a another dependency for your project. Emil On Thu, Nov 26, 2009 at 1:24 PM, jheidenre...@statistik-hessen.de wrote: Why is it a challenge accessing EJB in Struts2? All you need to do is