Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Use Vaadin with google app engine

I'm just wondering if its possible to have a Vaadin project working under google app engine? If it is then please refer me to any kind of documentation or "how-to".

like image 590
Marthin Avatar asked Jan 19 '23 04:01

Marthin


2 Answers

The Vaadin wiki contains a step-by-step process.

like image 149
Jasper Avatar answered Jan 21 '23 18:01

Jasper


There is an ticket about supporting Vaadin by GAE: http://dev.vaadin.com/ticket/2835

I've tried it - and id works. First of all you need to enable sessions:

<sessions-enabled>true</sessions-enabled>

and use GAEApplicationServlet instead of default vaadin's.

Second: make sure that all you domain objects, are serializable (i bet it's no problem, btw)

And third: move all static files (theme css and images) from vaadin's jar to your webapp folder

like image 39
Igor Artamonov Avatar answered Jan 21 '23 17:01

Igor Artamonov