Show Navigation

Deploy a Grails app to Google Cloud

Learn how to deploy a Grails 3 application to Google App Engine Java Flexible Environment, integrate with Google Cloud Storage and Google Cloud SQL

Authors: Sergio del Amo, Mathew Moss

Grails Version: 3.3.0

1 Grails Training

Grails Training - Developed and delivered by the folks who created and actively maintain the Grails framework!.

2 Getting Started

In this guide, you are going to deploy a Grails 3 application to Google App Engine Flexible Environment, upload images to Google Cloud Storage and use a MySQL database provided by Cloud SQL.

3 Costs

This guide uses paid services; you may need to enable Billing in Google Cloud to complete some steps in this guide.

4 What you will need

To complete this guide, you will need the following:

  • Some time on your hands

  • A decent text editor or IDE

  • JDK 1.7 or greater installed with JAVA_HOME configured appropriately

5 How to Complete

To get started do the following:

Download and unzip the source or Clone the Git repository:

git clone https://github.com/grails-guides/grails-google-cloud.git

The Grails guides repositories contain two folders:

  • initial Initial project. A simple Grails app with additional some code to give you a head-start.

  • complete A completed example. It is the result of working through the steps presented by the guide and applying those changes to the initial folder.

To complete the guide, go to the initial folder

cd initial

and follow the instructions in the next sections.

or you can go right to the completed example:

cd complete

Although you can go right to the completed example, in order to deploy the app you would need to complete several configuration steps in Google Cloud:

  • Signup for Cloud SDK and install Cloud SDK.

  • Initialize an App Engine application within the current Google Cloud project.

  • Create a Mysql Database in an instance of Cloud SQL.

  • Enable Cloud Datastore API for the project

Moreover, You would need to modify your application.yml configuration to point to the correct Cloud SQL database and Cloud Storage Bucket. Checkout the guide steps for more details.

6 Writing the application

6.1 Domain Class

We want to persist some test data in a Cloud SQL database. The initial project includes a Grails Domain Class to map Book instances to a MySQL table.

A domain class fulfills the M in the Model View Controller (MVC) pattern and represents a persistent entity that is mapped onto an underlying database table. In Grails a domain is a class that lives in the grails-app/domain directory.

grails-app/domain/demo/Book.groovy
package demo

import grails.compiler.GrailsCompileStatic

@GrailsCompileStatic
class Book {
    String name
    String featuredImageUrl
    String fileName

    static constraints = {
        name unique: true
        featuredImageUrl nullable: true
        fileName nullable: true
    }
}

6.2 Seed Data

When the application starts we are going to add some seed data. In particular, we persist a list of books.

Modify BootStrap.groovy.

grails-app/init/demo/BootStrap.groovy
package demo

import groovy.transform.CompileStatic

@CompileStatic
class BootStrap {
    def init = { servletContext ->
        Book.saveAll(
            new Book(name: 'Grails 3: A Practical Guide to Application Development'),
            new Book(name: 'Falando de Grails',),
            new Book(name: 'The Definitive Guide to Grails 2'),
            new Book(name: 'Grails in Action'),
            new Book(name: 'Grails 2: A Quick-Start Guide'),
            new Book(name: 'Programming Grails')
        )
    }
    def destroy = {
    }
}

6.3 Display Books

As the home page of the application, we want to display the books persisted when the application starts; those we saved in BootStrap.groovy

We map the home page to be resolved by BookController by modifying UrlMappings.groovy

Replace:

grails-app/controllers/demo/UrlMappings.groovy

"/"(view:"/index")

with:

grails-app/controllers/demo/UrlMappings.groovy

'/'(controller: 'book')

We have modified slightly the output of Grails static scaffolding command generate-all to provide CRUD functionality for the domain class Book.

You can find the code: BookController, BookGormService and GSP views in the initial project.

7 Cloud SDK

Signup for Google Cloud Platform and create a new project:

create project
create project 2

We named the project grailsgooglecloud

Install Cloud SDK for your operating system.

After you have installed the SDK, run the init command in your terminal:

$ gcloud init

It will prompt you to select the Google account and the project which you want to use.

8 Google App Engine

We are going to deploy the Grails application developed in this guide to the Google App Engine Flexible Environment

App Engine allows developers to focus on doing what they do best: writing code. Based on Google Compute Engine, the App Engine flexible environment automatically scales your app up and down while balancing the load. Microservices, authorization, SQL and NoSQL databases, traffic splitting, logging, versioning, security scanning, and content delivery networks are all supported natively.

Run the command:

gcloud app create

to initialize an App Engine application within the current Google Cloud project.

You will need to choose the region where you want your App Engine Application located.

8.1 Google App Engine Gradle Plugin

To deploy to App Engine, we are going to use the Google App Engine Gradle Plugin.

Add the plugin as a buildscript dependency:

build.gradle
buildscript {
    repositories {
        mavenLocal()
        maven { url "https://repo.grails.org/grails/core" }
    }
    dependencies {
        classpath "org.grails:grails-gradle-plugin:$grailsVersion"
        classpath "com.bertramlabs.plugins:asset-pipeline-gradle:2.14.2"
        classpath "org.grails.plugins:hibernate5:${gormVersion-".RELEASE"}"
        classpath 'com.google.cloud.tools:appengine-gradle-plugin:1.3.2'
    }
}

Apply the plugin:

build.gradle
apply plugin: 'com.google.cloud.tools.appengine'

8.2 Application Deployment Configuration

To deploy to Google App Engine, we need to add the file src/main/appengine/app.yaml

It describes the application’s deployment configuration:

/src/main/appengine/app.yaml
runtime: java
env: flex

runtime_config:
    jdk: openjdk8
    server: jetty9

health_check:
    enable_health_check: False

resources:
    cpu: 1
    memory_gb: 2.3

manual_scaling:
    instances: 1

Here, app.yaml specifies the runtime used by the app, and sets env: flex, specifying that the app uses the flexible environment.

The minimal app.yaml application configuration file shown above is sufficient for a simple Grails application. Depending on the size, complexity, and features that your application uses, you may need to change and extend this basic configuration file. For more information on what can be configured via app.yaml, please see the Configuring Your App with app.yaml guide.

For more information on how the Java runtime works, see Java 8 / Jetty 9.3 Runtime.

8.3 SpringBoot Jetty

As shown in the previous app engine configuration file, we are using Jetty.

Grails is built on top of SpringBoot. Following SpringBoot’s documentation, we need to do the following changes to deploy to Jetty instead of Tomcat.

Replace:

build.gradle
compile "org.springframework.boot:spring-boot-starter-tomcat"

with:

build.gradle
provided "org.springframework.boot:spring-boot-starter-jetty"
it is important you set the spring-boot-starter-jetty dependency as provided.

We need to exclude several dependencies too:

build.gradle
configurations {
    compile.exclude module: "tomcat-juli"
    compile.exclude module: "spring-boot-starter-tomcat"
    compile.exclude group: "com.google.guava", module: "guava-jdk5"
}

9 Cloud SQL

The Grails application developed during this guide is going to use a MySQL database created with Cloud SQL

Cloud SQL is a fully-managed database service that makes it easy to set up, maintain, manage, and administer your relational PostgreSQL BETA and MySQL databases in the cloud. Cloud SQL offers high performance, scalability, and convenience. Hosted on Google Cloud Platform, Cloud SQL provides a database infrastructure for applications running anywhere.

Enable Cloud SQL API

If you have not enabled Cloud SQL and Cloud SQL API already, go to your project dashboard and enable them.

cloudsql 1
cloudsql 2
cloudsql 3
cloudsql 4
cloudsqlapi 1

9.1 Create Cloud SQL Instance

We are going to create a new instance of Cloud SQL associated to the same project we created before.

Go to the Cloud SQL section of the console:

cloudsql 5

Next screenshots illustrate the process:

cloudsql 6
cloudsql 7
cloudsql 8
cloudsql 9

Once the instance is ready, we create a database:

cloudsql 10
cloudsql 11
cloudsql 12

9.2 Datasource using Cloud SQL

As described in Using Cloud SQL with a Flexible Environment documentation, we need to add several runtime dependencies and configure the production url to use the Cloud SQL MySQL database we created before.

Add MySQL dependencies; JDBC library and Cloud SQL MySQL Socket Factory.

build.gradle
    runtime 'mysql:mysql-connector-java:6.0.5'
    runtime 'com.google.cloud.sql:mysql-socket-factory-connector-j-6:1.0.3'

Replace the production environment datasource configuration to point to the Cloud SQL MySQL database in application.yml

grails-app/conf/application.yml
environments:
    production:
        dataSource:
            dialect: org.hibernate.dialect.MySQL5InnoDBDialect
            driverClassName: com.mysql.cj.jdbc.Driver
            dbCreate: update
            url: jdbc:mysql://google/grailsgooglecloud?socketFactory=com.google.cloud.sql.mysql.SocketFactory&cloudSqlInstance=inner-topic-174815:us-central1:grailsgooglecloud&useSSL=true
            username: root
            password: grailsgooglecloud

The production datasource url uses a custom url which is built with several components:

jdbc:mysql://google/{DATABASE_NAME}?socketFactory=com.google.cloud.sql.mysql.SocketFactory&cloudSqlInstance={INSTANCE_NAME}&useSSL=true

  • DATABASE_NAME Use the database name you used when you created the database.

  • INSTANCE_NAME You can find your instance name in your Cloud SQL instance details:

cloudsql 13
  • USERNAME / PASSWORD For this guide, we are using username: root and the password we entered when we created the SQL instance; see previous sections.

Cloud SQL Socket Factory for JDBC drivers Github Repository contains a tool in examples/getting-started that can help generate the JDBC URL and verify that connectivity can be established.

10 Cloud Storage

We allow our users to upload a book cover image. To store the images in the Cloud, we use Google Cloud Storage

Google Cloud Storage is unified object storage for developers and enterprises, from live data serving to data analytics/ML to data archiving.

Enable Cloud Storage API for the project, if you have not enabled it already.

cloudstorage 1
cloudstorage 2
cloudstorage 3

You can create a Cloud Storage Bucket as illustrated in the images below. We name the bucket grailsbucket

cloudstorage 4
cloudstorage 5
cloudstorage 6

Add Cloud Storage dependency to your project dependencies

build.gradle
    compile 'com.google.cloud:google-cloud-storage:1.2.3'

We need to exclude com.google.guava:guava-jdk5 too:

build.gradle
configurations {
    compile.exclude module: "tomcat-juli"
    compile.exclude module: "spring-boot-starter-tomcat"
    compile.exclude group: "com.google.guava", module: "guava-jdk5"
}

Append these configuration (Cloud Storage Bucket and Project id) parameters to application.yml

grails-app/conf/application.yml
googlecloud:
    projectid: grailsguide-176214
    cloudStorage:
        bucket: grailsguidebucket

These configuration parameters are used by the services described below.

Create a Grails Command Object to manage file upload parameters.

grails-app/controllers/demo/FeaturedImageCommand.groovy
package demo

import grails.validation.Validateable
import org.springframework.web.multipart.MultipartFile

class FeaturedImageCommand implements Validateable {
    MultipartFile featuredImageFile
    Long id
    Long version

    static constraints = {
        id nullable: false
        version nullable: false
       featuredImageFile  validator: { MultipartFile val, FeaturedImageCommand obj ->
            if ( val == null ) {
                return false
            }
            if ( val.empty ) {
                return false
            }

            ['jpeg', 'jpg', 'png'].any { String extension ->
                 val.originalFilename?.toLowerCase()?.endsWith(extension)
            }
        }
    }
}

Add two controller actions to BookController:

grails-app/controllers/demo/BookController.groovy
UploadBookFeaturedImageService uploadBookFeaturedImageService

@Transactional(readOnly = true)
def editFeaturedImage(Book book) {
     respond book
}
@CompileDynamic
def uploadFeaturedImage(FeaturedImageCommand cmd) {

    if (cmd.hasErrors()) {
         respond(cmd.errors, model: [book: cmd], view: 'editFeaturedImage')
        return
    }

    def book = uploadBookFeaturedImageService.uploadFeaturedImage(cmd)
    if (book == null) {
        notFound()
        return
    }

    if (book.hasErrors()) {
        respond(book.errors, model: [book: book], view: 'editFeaturedImage')
        return
    }

    request.withFormat {
        form multipartForm {
            flash.message = message(code: 'default.updated.message', args: [message(code: 'book.label', default: 'Book'), book.id])
            redirect book
        }
        '*' { respond book, [status: OK] }
    }
}

The previous controller actions use a service to manage our business logic. Create `UploadBookFeaturedImageService.groovy`:

grails-app/services/demo/UploadBookFeaturedImageService.groovy
package demo

import groovy.util.logging.Slf4j
import groovy.transform.CompileStatic

@Slf4j
@CompileStatic
class UploadBookFeaturedImageService {

    BookGormService bookGormService

    GoogleCloudStorageService googleCloudStorageService

    private static String fileSuffix() {
        new Date().format('-YYYY-MM-dd-HHmmssSSS')
    }

    Book uploadFeaturedImage(FeaturedImageCommand cmd) {
        String fileName = "${cmd.featuredImageFile.originalFilename}${fileSuffix()}"

        log.info "cloud storage file name $fileName"

        String fileUrl = googleCloudStorageService.storeMultipartFile(fileName, cmd.featuredImageFile)

        log.info "cloud storage media url $fileUrl"

        def book = bookGormService.updateFeaturedImageUrl(cmd.id, cmd.version, fileName, fileUrl)
        if ( !book || book.hasErrors() ) {
            googleCloudStorageService.deleteFile(fileName)
        }
        book
    }
}

The code which interacts with Cloud Storage is encapsulated in a service:

grails-app/services/demo/GoogleCloudStorageService.groovy
package demo

import com.google.cloud.storage.Acl
import com.google.cloud.storage.BlobId
import com.google.cloud.storage.BlobInfo
import com.google.cloud.storage.Storage
import com.google.cloud.storage.StorageOptions
import grails.config.Config
import grails.core.support.GrailsConfigurationAware
import org.springframework.web.multipart.MultipartFile
import groovy.transform.CompileStatic

@SuppressWarnings('GrailsStatelessService')
@CompileStatic
class GoogleCloudStorageService implements GrailsConfigurationAware {

    Storage storage = StorageOptions.defaultInstance.service

    // Google Cloud Platform project ID.
    String projectId

    // Cloud Storage Bucket
    String bucket

    @Override
    void setConfiguration(Config co) {
        projectId = co.getRequiredProperty('googlecloud.projectid', String)
        bucket = co.getProperty('googlecloud.cloudStorage.bucket', String, projectId)
    }

    String storeMultipartFile(String fileName, MultipartFile multipartFile) {
        storeInputStream(fileName, multipartFile.inputStream)
    }

    String storeInputStream(String fileName, InputStream inputStream) {
        BlobInfo blobInfo = storage.create(readableBlobInfo(bucket, fileName), inputStream)
        blobInfo.mediaLink
    }

    String storeBytes(String fileName, byte[] bytes) {
        BlobInfo blobInfo = storage.create(readableBlobInfo(bucket, fileName), bytes)
        blobInfo.mediaLink
    }

    private static BlobInfo readableBlobInfo(String bucket, String fileName) {
        BlobInfo.newBuilder(bucket, fileName)
                // Modify access list to allow all users with link to read file
                .setAcl([Acl.of(Acl.User.ofAllUsers(), Acl.Role.READER)])
                .build()
   }

   boolean deleteFile(String fileName) {
       BlobId blobId = BlobId.of(bucket, fileName)
       storage.delete(blobId)
   }
}

If the upload of an image to Google Cloud is successful, we save the reference to the media url in our domain class.

Add this method to the BookGormService class

grails-app/services/demo/BookGormService.groovy
@SuppressWarnings('LineLength')
Book updateFeaturedImageUrl(Long id, Long version, String fileName, String featuredImageUrl, boolean flush = false) {
    Book book = Book.get(id)
    if ( !book ) {
        return null
    }
    book.version = version
    book.fileName = fileName
    book.featuredImageUrl = featuredImageUrl
    book.save(flush: flush)
    book
}

We need to add one GSP file to render the upload form:

grails-app/views/book/editFeaturedImage.gsp
<!DOCTYPE html>
<html>
    <head>
        <meta name="layout" content="main" />
        <g:set var="entityName" value="${message(code: 'book.label', default: 'Book')}" />
        <title><g:message code="default.edit.label" args="[entityName]" /></title>
   </head>
   <body>
       <a href="#edit-book" class="skip" tabindex="-1"><g:message code="default.link.skip.label" default="Skip to content&hellip;"/></a>
       <div class="nav" role="navigation">
       <ul>
           <li><a class="home" href="${createLink(uri: '/')}"><g:message code="default.home.label"/></a></li>
           <li><g:link class="list" action="index"><g:message code="default.list.label" args="[entityName]" /></g:link></li>
          <li><g:link class="create" action="create"><g:message code="default.new.label" args="[entityName]" /></g:link></li>
      </ul>
     </div>
     <div id="edit-book" class="content scaffold-edit" role="main">
        <h1><g:message code="book.featuredImage.edit.label" default="Edit Featured Image" /></h1>
        <g:if test="${flash.message}">
            <div class="message" role="status">${flash.message}</div>
        </g:if>
       <g:hasErrors bean="${this.book}">
           <ul class="errors" role="alert">
               <g:eachError bean="${this.book}" var="error">
                   <li <g:if test="${error in org.springframework.validation.FieldError}">data-field-id="${error.field}"</g:if>><g:message error="${error}"/></li>
              </g:eachError>
          </ul>
       </g:hasErrors>
       <g:uploadForm name="uploadFeaturedImage" action="uploadFeaturedImage">
           <g:hiddenField name="id" value="${this.book?.id}" />
           <g:hiddenField name="version" value="${this.book?.version}" />
           <input type="file" name="featuredImageFile" />
           <fieldset class="buttons">
              <input class="save" type="submit" value="${message(code: 'book.featuredImage.upload.label', default: 'Upload')}" />
          </fieldset>
      </g:uploadForm>
    </div>
</body>
</html>

11 Deploying the app

To deploy the app to Google App Engine run:

$ ./gradlew appengineDeploy

Initial deployment may take a while. When finished, you will be able to access your app:

welcometograils

If you go to the Versions section in the App Engine administration panel, you will see the deployed app.

12 Logging

For the version which you would like to inspect, select Logs in the diagnose dropdown:

logs

Application log messages written to stdout and stderr are automatically collected and can be viewed in the Logs Viewer.

We are going to create a controller and log with level INFO and verify the log statement is visible in the Log Viewer.

grails-app/controllers/demo/LegalController.groovy
package demo

import groovy.transform.CompileStatic
import groovy.util.logging.Slf4j

@CompileStatic
@Slf4j
class LegalController {
    def index() {
        log.info 'inside legal controller'
        render 'Legal Terms'
    }
}

We add the next line to grails-app/conf/logback.groovy

logger 'demo', INFO, ['STDOUT'], false

to log INFO statements of classes under package demo to STDOUT appender with additivity false

If you redeploy the app to App Engine and access the /legal end point, you will see the logging statements in Log Viewer.

Check Writing Application Logs documentation to read more about logs in the Flexible Environment.

Write your application logs using stdout for output and stderr for errors. Note that this does not provide log levels that you can use for filtering in the Logs Viewer; however, the Logs Viewer does provide other filtering, such as text, timestamp, etc.

13 Cleaning Up

After you’ve finished this guide, you can clean up the resources you created on Google Cloud Platform so you won’t be billed for them in the future. The following sections describe how to delete or turn off these resources.

Deleting the project

The easiest way to eliminate billing is to delete the project you created for the tutorial.

To delete the project:

Deleting a project has the following consequences:
  • If you used an existing project, you’ll also delete any other work you’ve done in the project.

  • You can’t reuse the project ID of a deleted project. If you created a custom project ID that you plan to use in the future, you should delete the resources inside the project instead. This ensures that URLs that use the project ID, such as an appspot.com URL, remain available.

  • If you are exploring multiple tutorials and quickstarts, reusing projects instead of deleting them prevents you from exceeding project quota limits.

In the Cloud Platform Console, go to the Projects page.

In the project list, select the project you want to delete and click Delete project. After selecting the checkbox next to the project name, click Delete project

In the dialog, type the project ID, and then click Shut down to delete the project.

Deleting or turning off specific resources

You can individually delete or turn off some of the resources that you created during the tutorial.

Deleting app versions

To delete an app version:

In the Cloud Platform Console, go to the App Engine Versions page.

Click the checkbox next to the non-default app version you want to delete.

The only way you can delete the default version of your App Engine app is by deleting your project. However, you can stop the default version in the Cloud Platform Console. This action shuts down all instances associated with the version. You can restart these instances later if needed.

In the App Engine standard environment, you can stop the default version only if your app has manual or basic scaling.

Click the Delete button at the top of the page to delete the app version.

Deleting Cloud SQL instances

To delete a Cloud SQL instance:

In the Cloud Platform Console, go to the SQL Instances page.

Click the name of the SQL instance you want to delete.

Click the Delete button at the top of the page to delete the instance.

Deleting Cloud Storage buckets

To delete a Cloud Storage bucket:

In the Cloud Platform Console, go to the Cloud Storage browser.

Click the checkbox next to the bucket you want to delete.

Click the Delete button at the top of the page to delete the bucket.

14 Learn More

If you want to learn more about Google Cloud and Grails integration, checkout a more complete sample app.

The Google Cloud Bookshelf with Grails application shows how to use a variety of Google Cloud Platform products, including some of the services described in this guides and other services such as:

15 Help With Grails

Object Computing, Inc. (OCI) sponsored the creation of this Guide. A variety of consulting and support services are available.

OCI is Home to Grails

Meet the Team