I have devoloped a Struts 2 web application. For running it on a server, I need to install the following:
- JDK
- Tomcat
- MySQL
I need to sent my project to a foreign client. He asked me to convert my entire project and software into a single EXE file, so that using a single EXE file he could install everything and load my project into the server.
That is, he could be able to load the project on the server using that single exe. The EXE file will start invoking the installers one by one and finally load my project.
I have converted my .msi installers to .exe and my project into a WAR file and my database into an .sql file. Now I want to combine everything into a single EXE file.
Is it possible to create such a single EXE file? What tools and steps do I have to follow?