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

I have hosting plan which supports

i) Tomcat - 5.5.xSupport

ii) JDK - 1.6.x Support

iii) JSP/servlet - 2.0 Support

Am I able to deploy EJB 3.1 on this setup? I've heard that Tomcat does not support EJBs, but hopefully there is a workaround. Any advice is appreciated.

share|improve this question

2 Answers

up vote 2 down vote accepted

Apache TomEE was previously the openEJB project if i am not mistaken. You can use the openEJB libraries provided to deploy ejbs on your tomcat instance. More on how to setup can be found at the followinglink:

http://openejb.codehaus.org/tomcat.html

share|improve this answer
Thanks for the answering but i have an also question is that possible to use EJB as locally means using it on same JVM in Tomcat ??? is it posible ??? – Suryakant Kachhi Nov 18 '12 at 14:34
Yes that is correct. This is what is achieved through Open EJB – dinukadev Nov 18 '12 at 14:49

That's right, Tomcat is just a servlet container, thus you can deploy servlets and JSPs, but not EJBs. You need an application server like JBoss or Glassfish.

There is also an Apache TomEE project built on top of Tomcat and probably you can embed some lightweight EJB container inside Tomcat.

share|improve this answer
Thanks for the answering but i have an also question is that possible to use EJB as locally means using it on same JVM in Tomcat ??? is it posible ??? – Suryakant Kachhi Nov 18 '12 at 14:31

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.