any good tutorials on creating an installer that will install a spring mvc web application, namely setting up tomcat and postgresql on someones desktop?

link|improve this question

55% accept rate
1  
Umm... isn't the idea of a Web application that no software other than the browser needs to be set up on someone's desktop? – Carl Smotricz Jan 4 '10 at 13:37
But it is great for QA, Integrators, Implementors and even IT people at the client's site... – Eran Medan Jan 4 '10 at 13:38
Target platform(s)? Should it also configure Tomcat and PostgreSQL as system services? – Mirko N. Jan 4 '10 at 13:48
feedback

1 Answer

Best thing is to create a directory containing all stuff (tomcat+ webapp, postgresql) and a cmd script firing up the DB and appserver. Zip this up. Than, you can use a tool like http://www.advancedinstaller.com/java.html to wrap it up in an MSI file, that unzips the application, installs Java (if necessary) and create shortcuts. This is assuming the target platform is Windows. For other platforms you can use a similar approach.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.