Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Best way to deploy on Glassfish V3

What is the best way to deploy my web project (or ear project) to remote server and glassfish?

How to use ant-deploy.xml and build-impl.xml that netbeans create for this purpose?

Using autodeploy folder and separately adding sun-resources.xml to the GF Or Using ant and....

Would you please explain me step by step?

Regards

like image 357
Nav Avatar asked Sep 03 '10 12:09

Nav


People also ask

Is GlassFish free for commercial use?

GlassFish is free software and was initially dual-licensed under two free software licences: the Common Development and Distribution License (CDDL) and the GNU General Public License (GPL) with the Classpath exception.

What is GlassFish open source server?

Oracle GlassFish Server is the world's first implementation of the Java Platform, Enterprise Edition (Java EE) 6 specification. Built using the GlassFish Server Open Source Edition, Oracle GlassFish Server delivers a flexible, lightweight, and production-ready Java EE 6 application server.


1 Answers

Well, you could manually deploy your app via the admin console.

Or you could use the asadmin command. A remote deployment in its simplest from would look like:

asadmin deploy --user=<adminuser> --host=<hostname> <path to jar/war/ear>

And this could be shell scripted, or wrapped in Ant, or Maven.

Or you could use more specialized tools (the Ant Task, the maven glassfish plugin, the maven asadmin plugin, Cargo).

It all depends on your context, there is no single answer and there are many possibilities. If you don't know what you're looking for, just use the Ant build scripts created by NetBeans.

like image 183
Pascal Thivent Avatar answered Oct 21 '22 08:10

Pascal Thivent