Will86
Will86

Reputation: 167

how create an ejb-jar file to deploy in Glass Fish server v3

I would like to know how deploy an EJB application? that also has web services with jax-ws... I read this link http://java.sun.com/developer/onlineTraining/Beans/EJBTutorial/step5.html#Create%20the%20ejb-jar%20file but use weblogic to generated deployment descriptor... How generated the deployment descriptor to Glass Fish?... How generate a ejb-jar file?... Thank you very much for you help...

Upvotes: 1

Views: 1668

Answers (1)

Ilya
Ilya

Reputation: 29693

Here is very good article, how create enterprise application (like web-service) step by step.
Using: Eclipce IDE, Java EE 6, GlassFish AS.
Article

Here is requared deployment descriptors for GLassFish AS
Oracle DOC

I recommend you use maven for your projects. Maven can generate all that you need

@see maven-jar-plugin  
@see maven-ear-plugin

Upvotes: 1

Related Questions