views:

70

answers:

1

Hello,

I'm planning to make a webapp and just wonder if someone ever tried to use remote EJBs with a RAD framework like Grails, Play... was it easy?

+1  A: 

Concerning Grails, it is possible and easy to use remote EJB 2.1. So considering that EJB 3 is easier than 2.1, I suppose that you could give it a try with some prototype project.

See this article for clarification. This presentation is also given you integration strategies with EJB 2 and 3

P.S: I didn't try myself since I have no need of it

fabien7474
Thank you, it seems nice.Just wonder, is it possible to use Local EJB's instead of Remote to avoid the serialization of parameters?
Sebastien Lorber
I suppose yes but again I didn't try. Please, if you test it, share your results with the community.
fabien7474
Anyway i think i've read something like Remote ejb's, in the same ear file, doesn't serialize the arguments so performances are the same as if the interface was Local. But not sure...
Sebastien Lorber