This content has been marked as final.
Show 1 reply
-
1. Re: EJB vs. POJO - Performance
ralf.penners Jan 11, 2014 1:29 PM (in response to ralf.penners)The problem in this case was, that the invoked method was just a simple utility function, which was called very frequently.
So the little overhead of an EJB, like for example the transaction management, had a negative effect on the performance of the application.
In the end it was not an optimal application design to implement such a simple logic as an EJB instead of using a POJO or static class.