0% found this document useful (0 votes)
674 views6 pages

Gae Web App

1) The document outlines the steps to use the Google App Engine (GAE) launcher to launch web applications. 2) It describes installing the Google Plugin for Eclipse, creating a new web application project, and reviewing the project structure. 3) The final steps explain how to run the application locally, deploy it to Google App Engine by signing in and clicking deploy, and accessing it at a generated URL.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
674 views6 pages

Gae Web App

1) The document outlines the steps to use the Google App Engine (GAE) launcher to launch web applications. 2) It describes installing the Google Plugin for Eclipse, creating a new web application project, and reviewing the project structure. 3) The final steps explain how to run the application locally, deploy it to Google App Engine by signing in and clicking deploy, and accessing it at a generated URL.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 6

Ex.

No:
TO USE GAE LAUNCHER TO LAUNCH WEB
Date: APPLICATIONS.

AIM:
To use GAE launcher to launch the web applications.

PROCEDURE:

Step 1: Install Google Plugin for Eclipse


Step 2: Create New Web Application Project
In Eclipse toolbar, click on the Google icon, and select “New Web Application Project…”

REG NO:211520205153 NAME: SUBHIKSHA B


Click finish, Google Plugin for Eclipse will generate a sample project automatically.
Review the generated project directory.

Step 3: Review Java web project structure.

appengine-web.xml

<?xml version="1.0" encoding="utf-8"?>


<appengine-web-app xmlns="http://appengine.google.com/ns/1.0">
<application></application>
<version>1</version>

<!-- Configure java.util.logging -->


<system-properties>
<property name="java.util.logging.config.file" value="WEB-INF/logging.properties"/>
</system-properties>
</appengine-web-app>

REG NO:211520205153 NAME: SUBHIKSHA B


Step 4: Run it local

Access URL http://localhost:8888/, see output and also the hello world servlet –
http://localhost:8888/helloworld

Step 5: Deploy to Google App Engine


Register an account on https://appengine.google.com/, and create an application ID for your
web application.

This demonstration has an application ID, named “mkyong123”, and is found in appengine-
web.xml.

<?xml version="1.0" encoding="utf-8"?>


<appengine-web-app xmlns="http://appengine.google.com/ns/1.0">
<application>mkyong123</application>
<version>1</version>
REG NO:211520205153 NAME: SUBHIKSHA B
<!-- Configure java.util.logging -->
<system-properties>
<property name="java.util.logging.config.file" value="WEB-INF/logging.properties"/>
</system-properties>
</appengine-web-app>

5.1 – Click on GAE deploy button on the toolbar.

5.2 Sign in with your Google account and click on the Deploy button.

REG NO:211520205153 NAME: SUBHIKSHA B


5.3 The hello world web application will be deployed to this URL –
http://mkyong123.appspot.com/

RESULT:

Thus, the program to use GAE launcher to launch the web applications has been successfully executed
and output verified.
REG NO:211520205153 NAME: SUBHIKSHA B
REG NO: 211520205134 NAME: SHARON VICTORIYA MA

You might also like