user999379
user999379

Reputation: 411

run vaadin application on pc

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

Answers (2)

Christopher Poile
Christopher Poile

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

sgowd
sgowd

Reputation: 2260

You can use Jsmooth to create an installer for the application.

Upvotes: 0

Related Questions