Presentation is loading. Please wait.

Presentation is loading. Please wait.

Creating a Hello App Using Google App Engine. What are Google apps? Apps is an abbreviation for application. An app is a piece of software. It can run.

Similar presentations


Presentation on theme: "Creating a Hello App Using Google App Engine. What are Google apps? Apps is an abbreviation for application. An app is a piece of software. It can run."— Presentation transcript:

1 Creating a Hello App Using Google App Engine

2 What are Google apps? Apps is an abbreviation for application. An app is a piece of software. It can run on the Internet, on your computer, or on your phone or other electronic device. Google refers to their online services as apps, but they also sell a specific suite of services known as Google Apps and have an application hosting service called Google Appengine.

3 What is google appengine? Google App Engine is a way to write your own Web applications and have them hosted on Google servers. Google Apps can be found on the Web at www.google.com/a www.google.com/a And Google App Engine can be found on the Web at code.google.com/appengine. code.google.com/appengine

4 Cont… You can serve your app using a free name on the appspot.com domain. You can share your application with the world, or limit access to members of your organization.

5 Registering the Application 1.App Engine Administration Console, at the following URL: https://appengine.google.com/ 2.Sign in to App Engine using your Google account 3.To create a new application: a)Click the "Create an Application" button b)Follow the instructions to register an application ID, a name unique to this application c)If you select to use the free appspot.com domain name, the full URL for the application will be http://application-id.appspot.com/

6 Sign in to gmail account:

7

8 How to make Google app? To make google app we need following 1. eclipse 2. google plugin for eclipse

9 Eclipse Eclipse is a multi-language software development environment comprising an integrated development environment (IDE) and an extensible plugin system. It is written mostly in java and can be used to develop applications in Java and, by means of various plug- ins, other programming language including C, C++ etc.

10 How to download eclipse? Eclipse is an open source software. Its different versions are easily available on internet. http://www.eclipse.org/downloads/ To download eclipse first you have to install java run time environment.

11 Installing eclipse: Go to the site: http://www.poweredbypulse.com/eclipse_packages_ win.php Select the eclipse version 3.6

12 Installing eclipse classic:

13 Step1:Check Google plugin for eclipse

14 Step2:click on install button

15 Installation started:

16 Plugin installed:

17 Creating web application project

18 Creating new web application project:

19 Project created:

20 The Project Directory A single directory named Project_Name/ for all project files. Subdirectory named src/ contains the Java source code Subdirectory named war/ contains the complete application arranged in the WAR format. Build process compiles the Java source files and puts the compiled classes in the appropriate location in war/

21 The servlet class: App Engine Java applications use the Java Servlet API to interact with the web server. An HTTPservlet is an application class that can process and respond to web requests. Servlet class extends either the javax.servlet.GenericServlet class or the javax.servlet.http.HttpServlet class.

22 Servlet class:

23 The web.xml File: When the web server receives a request, web.xml file is used to determines which servlet class to call web.xml resides in the war/WEB-INF/ directory web.xml file declares a servlet named Yusra, and maps it to the URL path /yusra whenever the user fetches a URL path that is not already mapped to a servlet, the server should check for a file named index.html in that directory and serve it if found.

24 Xml file:

25 The appengine-web.xml File This file is named appengine-web.xml, and resides in WEB-INF/ alongside web.xml It includes: ▫ The registered ID of your application (Eclipse creates this with an empty ID for you to fill in later), ▫ The version number of your application, ▫ Lists of files:  Static files (such as images and CSS) and resource files (such as JSPs and other application data)

26 appengine-web.xml file:

27 Running the project: The App Engine SDK includes a web server application you can use to test your application Steps: ▫Make sure the project (“Yusra") is selected, ▫Right click and select Run As menu ▫Select Web Application This should start Jetty on http://localhost:8888/

28

29 Testing the Application:

30 Deploying Application: Now deploy your application to the Google cloud You must have a google mail account Give application ID to you application – Application ID will be stored in file (“appengine- web.xml” First you will have to register application on google cloud – Using the same application ID Then perform deploying operation

31 Uploading From Eclipse To upload your application from Eclipse, click the App Engine deploy button on the toolbar Click the Deploy button Enter your Google account username (your email address) and password when prompted Eclipse gets the application ID and version information from the appengine-web.xml file, and uploads the contents of the war/ directory.

32 Deploying project:

33 Click on deploy button:

34 Deployment started:

35 Accessing Your Application You can now see your application running on App Engine If you set up a free appspot.com domain name, the URL for your website begins with your application ID: http://application-id.appspot.com/ In our example it will be http://hiyzfriends.appspot.com/yusra

36 Uploaded successfully:

37


Download ppt "Creating a Hello App Using Google App Engine. What are Google apps? Apps is an abbreviation for application. An app is a piece of software. It can run."

Similar presentations


Ads by Google