Hello:
We are building our first application on Weblogic. We are running version 8.1.
I would like to get the pros and cons of using Weblogic's implementation of J2EE standards.
For example, should we derive all my ejb's from weblogic.ejb package that has GenericEnterpriseBean, GenericEntityBean and GenericSessionBean in order to fully avail the capabilities of WebLogic as a Container such as Object Pooling etc?
I understand that this will make our implementation dependent on WebLogic, at some point, we would like to exploit the features of the platform we paid dearly for.
Thanks.
venki
Discussions
EJB programming & troubleshooting: Pros and cons of using particular Container implementations
-
Pros and cons of using particular Container implementations (3 messages)
- Posted by: Venkat Venkataramanan
- Posted on: June 22 2005 10:39 EDT
Threaded Messages (3)
- Purely stratergical by Biswa Das on June 22 2005 15:14 EDT
- Purely stratergical by sawan parihar on June 26 2005 23:25 EDT
- Sawan is Right by Biswa Das on June 27 2005 05:38 EDT
- Purely stratergical by sawan parihar on June 26 2005 23:25 EDT
-
Purely stratergical[ Go to top ]
- Posted by: Biswa Das
- Posted on: June 22 2005 15:14 EDT
- in response to Venkat Venkataramanan
It all depends on who takes decision.
As per my experience writing a application on Jboss and deployment on others creates a true portable J2EE application. Weblogic is very rich in entity beans local implementation and the quering mechanism. In case there is no plan for you to move out of weblogic in next decade I dont feel anything wrong in using container rich features, after all that is what you are paying for. -
Purely stratergical[ Go to top ]
- Posted by: sawan parihar
- Posted on: June 26 2005 23:25 EDT
- in response to Biswa Das
Hey,
Yes weblogic is one good App server. It is one of the best in the market. I would advise you to keep your app portable. I am sure that in future you won't need to move to any other app server as the features in weblogic are quite good but still keeping your app portable won't harm.
I would like to suggest that don't derive your ejb's from GenericEnterpriseBean .If you want you can have your own GenricEJB that can give default implementation of the EJB callback methods and extend your ejb's from GebricEJB(Your own ejb)so that in all your ejb's you don't need to write all the callback methods.
sawan -
Sawan is Right[ Go to top ]
- Posted by: Biswa Das
- Posted on: June 27 2005 17:38 EDT
- in response to sawan parihar
Sawan is right, I worked with the container from 4.5 to 7.1 and hardely needed to use container rich features. When it comes to entity beans the difference between Weblogic and other containers is huge both in the scale of performance and convenience