0

I finished an application built with Grails , i want the to embed the tomcat server into my application so all the end user has to do is to run .exe or batch file to run the application without installing tomcat or any web server, is that applicable , if yes how to approach this ?

Thanks Sherif

SShehab
  • 1,039
  • 3
  • 17
  • 31

1 Answers1

1

You can use the Grails Standalone plugin created by Burt Beckwith.The Standalone plugin builds a runnable JAR file with an embedded war built from your application and an embedded Tomcat 7 or Jetty 7 instance. This allows you to build a single archive that can be run on any computer with Java 5 or higher by running java -jar standalone.jar.

Dror Bereznitsky
  • 20,048
  • 3
  • 48
  • 57