Q>How to create a Java Application with vaadin

i want to create a java application that runs vaadin on it. i want the design to be made by vaadin but it runs only on desktop not on browser. is it posible to make it if yes can someone show me how? or give me a example codes to make it posible

Hi,

If you can use the default broser stil, just make a standard main method to run embedded server and then launch local browser to the address.

With e.g. Spring Boot this is really handy. Here is an example that use Embedded Jetty:
https://github.com/mstahv/gafflingvalidator/blob/master/src/main/java/org/peimari/TServer.java

If you cant rely on the default browser provided by OS, I’d look at using the JavaFX browser. It is based on WebKit so I’d expect it to work pretty well with Vaadin.

cheers,
matti

thnx ill try this one