Skip to content

Spring Boot based sample backend app running GAE Flex environment using google NoSql datastore service

Notifications You must be signed in to change notification settings

ratanasoth/gae-flex-springboot

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Spring Boot based sample backend app running GAE Flex environment

This sample shows how to run a Spring Boot application on Google Cloud Platform. It uses the Google App Engine flexible environment.

Before you begin

This sample assumes you have Java 8 installed.

Download Maven

These samples use the Apache Maven build system. Before getting started, be sure to download and install it. When you use Maven as described here, it will automatically download the needed client libraries.

Create a Project in the Google Cloud Platform Console

If you haven't already created a project, create one now. Projects enable you to manage all Google Cloud Platform resources for your app, including deployment, access control, billing, and services.

  1. Open the Cloud Platform Console.
  2. In the drop-down menu at the top, select Create a project.
  3. Give your project a name.
  4. Make a note of the project ID, which might be different from the project name. The project ID is used in commands and in configurations.

Enable billing for your project.

If you haven't already enabled billing for your project, enable billing now. Enabling billing allows the application to consume billable resources such as running instances and storing data.

Install the Google Cloud SDK.

If you haven't already installed the Google Cloud SDK, install and initialize the Google Cloud SDK now. The SDK contains tools and libraries that enable you to create and manage resources on Google Cloud Platform.

Install the Google App Engine SDK for Java

gcloud components update app-engine-java
gcloud components update

Configure the app.yaml descriptor

The app.yaml descriptor is used to describe URL dispatch and resource requirements. This example sets manual_scaling to 1 to minimize possible costs. These settings should be revisited for production use.

Run the application locally

  1. Set the correct Cloud SDK project via gcloud config set project YOUR_PROJECT to the ID of your application.
  2. Run mvn spring-boot:run
  3. Visit http://localhost:8080
  4. Visit http://localhost:8080/api/categories/v1/all
  5. Visit http://localhost:8080/api/categories/v1/{id}

Deploy to App Engine flexible environment

  1. mvn appengine:deploy
  2. Visit http://YOUR_PROJECT.appspot.com.

Note that deployment to the App Engine flexible environment requires the new com.google.cloud.tools:appengine-maven-plugin plugin.

Java is a registered trademark of Oracle Corporation and/or its affiliates.

About

Spring Boot based sample backend app running GAE Flex environment using google NoSql datastore service

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java 100.0%