Reputation: 411
I have developed a vaadin application for a friend of me. Now I want to "install" this application on his pc so that when he clicks on an icon (like when you open, let's say spotify) the application starts and he can start using it... What is the easiest way to do this?
Upvotes: 5
Views: 1217
Reputation: 984
The application would be an runnable jar (using JSmooth or whatever you want). You would need to use an embeddable
web server like Jetty. Here is a tutorial on setting up Vaadin with Weld and embedded Jetty. Here is an example Vaadin application that shows you how to set up the launcher to automatically start your application.
Hope that helps!
Upvotes: 3