Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
should be community wiki – Ken Liu Apr 9 '10 at 19:42
I don't think that it should be a community wiki. – fabien7474 Apr 11 '10 at 18:03

1 Answer

up vote 1 down vote accepted

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

share|improve this answer
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 Apr 12 '10 at 7:37
I suppose yes but again I didn't try. Please, if you test it, share your results with the community. – fabien7474 Apr 12 '10 at 21:34
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 Apr 14 '10 at 16:37

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.