Vaadin on grails - Database access
Versions used in this tutorial: Grails 2.3.x, Vaadin 7.1.x. News and updates about Vaadin on Grails are available on VaadinOnGrails. This is continuation of Vaadin on Grails - Create project in IntelliJ IDEA
We are going to create persistence a domain class that is automatically mapped into a database through Hibernate. GORM from Grails framework will do most of the automatic stuff there.
Create persistent layer
-
Right click on the domain folder and select Create Domain
-
Fill in the full class name. If we put there only
Author
then the package name will be automatically added based on the name of the project. -
Add some fields to the Author domain class. Without fields, it is not considered as a domain object and therefore it is not mapped to the database. Each field represents a database table column.
package com.app class Author { String name static constraints = {} }
Service layer
-
Create a new service in the same way as the domain object.
-
Create
getAuthors
method that returns list of authors from the database.
package com.app import grails.transaction.Transactional @Transactional class AuthorService { List<Author> getAuthors() { return Author.list() } }
Data for development in application bootstrap
When the application starts, we want to create few authors in the
database. So we get some initial data for easy development. Open
BootStrap.groovy
and save few authors into the database.
The code will be executed only in development environment. That means no database records will be created when running application on test, production or any other environment.
import com.app.Author import grails.util.Environment class BootStrap { def init = { servletContext -> if (Environment.current == Environment.DEVELOPMENT) { Author raymond = new Author(name: 'Raymond') raymond.save(failOnError: true) Author pug = new Author(name: 'Pug') pug.save(failOnError: true) } } def destroy = { } }
Using service in Vaadin code
Now we are ready to get bean of AuthorService
in Vaadin code and get
the list of authors from the database. Open MyUI.groovy
and put there
the following code.
package app import com.app.Author import com.app.AuthorService import com.vaadin.ui.UI import com.vaadin.ui.VerticalLayout import com.vaadin.server.VaadinRequest import com.vaadin.ui.Label import com.vaadin.grails.Grails class MyUI extends UI { @Override protected void init(VaadinRequest request) { VerticalLayout layout = new VerticalLayout() layout.setMargin(true) AuthorService authorService = Grails.get(AuthorService) List<Author> authors = authorService.getAuthors() for (Author author : authors) { Label label = new Label(author.name) layout.addComponent(label) } setContent(layout) } }
Run the application and see the results fetched from the database. We
have created domain object Author
which is mapped to automatically
created database table. Then we have created AuthorService
that we
have got from Spring application context. We have loaded authors from
the database and displayed them in Vaadin application as labels.
Database connection
As we have covered big part of normal work when developing an application, created the persistence layer, maybe next questions are coming. Where are the data stored? What database is used and how to change it?
Grails is using H2 in memory database by default and you can change it
to any other database that is supported by Hibernate. In order to update
database connection setup, open DataSource.groovy
. Just add there the
proper parameters and add the dependency to, for example, MySql driver
in BuildConfig.groovy
.
You can continue with Vaadin on Grails - Multiple UIs