Tuesday 18 March 2014

Vaadin & Google App Engine

Deploying your first Vaadin Application to Google App Engine.

This blog demonstrates what you will need to deploy your Vaadin application to Google App Engine. In this exercise, I use eclipse kepler.

Prerequisites: Please ensure you got the following plugins installed:
1. Google Update Site for Eclipse 4.3 - http://dl.google.com/eclipse/plugin/4.3
2. Vaadin Update Site for Eclipse - http://vaadin.com/eclipse

Step1.
Go to File --> New --> Project --> Vaadin 7 Project



Step 2 - Select the options as shown in the screenshot.



Step 3 - Select the default setting on the next set of screen and complete the creation of the project (Change it if you know what you are doing)

Step 4 - Right click the project just created and select Properties

Step 5 - Look for App Engine under Google



Step 6 - Select 'Use Google App Engine' and put in your 'Application ID' and 'Version'


Step 7 - Create a web.xml under war/WEB-INF

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns="http://java.sun.com/xml/ns/javaee"
    xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
    id="WebApp_ID" version="3.0">
    <display-name>HelloGoogle</display-name>
    <context-param>
        <description>Vaadin production mode</description>
        <param-name>productionMode</param-name>
        <param-value>false</param-value>
    </context-param>
    <servlet>
        <servlet-name>myservlet</servlet-name>
        <servlet-class>com.vaadin.server.GAEVaadinServlet</servlet-class>
        <init-param>
            <description>Vaadin UI</description>
            <param-name>UI</param-name>
            <param-value>com.example.hellogae.HellogaeUI</param-value>
        </init-param>
    </servlet>
    <servlet-mapping>
        <servlet-name>myservlet</servlet-name>
        <url-pattern>/*</url-pattern>
    </servlet-mapping>
</web-app>

 Step 8 - Go to Java Build Path -> Order and Export tab and change the order to look like as shown in the screenshot



Step 9 - Make sure that the appengine-web.xml contains the "<threadsafe>true</threadsafe>"


<?xml version="1.0" encoding="utf-8"?>
<appengine-web-app xmlns="http://appengine.google.com/ns/1.0">
    <application>genieincloud</application>
    <version>1</version>
    <!-- Configure java.util.logging -->
    <system-properties>
        <property name="java.util.logging.config.file" value="WEB-INF/logging.properties" />
    </system-properties>
    <sessions-enabled>true</sessions-enabled>
    <threadsafe>true</threadsafe></appengine-web-app>


Step 10 - Make sure that war/WEB-INF/lib has got the following JARs




Step 11 - Right click, Google - > 'Deploy  to App Engine' -> Deploy




Give it a minute. Your application should now be deployed to GAE


That's it. That was simple enough. If you get into issues, drop me a comment. I'll try responding to it as soon as I can.

rgds



No comments:

Post a Comment