How to deploy EJB on server?

Posted by shekhar on Stack Overflow See other posts from Stack Overflow or by shekhar
Published on 2010-03-29T04:49:27Z Indexed on 2010/03/29 4:53 UTC
Read the original article Hit count: 342

Filed under:
|
|
|
|

Hi, I am learning EJB3 from last few days. I have many questions regarding EJB, application servers and deployment of EJB. To start with, I have created one simple helloworld stateless session bean but I don't know how to deploy it on server. It has single bean class, bean interface and one servlet client. I have used eclipse to develop this project. None of the books that I read gives step by step details about how to put EJB on server and how to access those beans. I have JBoss 6 server and I also have JEE budle downloaded from sun website. Does this JEE bundle contains Glassfish server? or do I need to download it seperately? Can anyone please give me step by step details of how to put my bean and its client on server (JBoss or JEE)? and why do we need to include bean interface class in EJB client code? I mean either we need to keep client and bean in same package or if we keep them in seperate packages we need to import bean interfaces in client code. Am I right?

Thanks and Regards, Chandrashekhar

© Stack Overflow or respective owner

Related posts about ejb3

Related posts about eclipse