tags | projects | |||||
---|---|---|---|---|---|---|
|
|
This guide walks you through the process of creating a Spring Boot application that uses Grails Object Relational Mapper (GORM) and Hibernate for persistence.
You’ll build a Spring application that persists data to an in-memory database using GORM.
Note
|
This guide only uses uses the Grails GORM library. You aren’t required to use the full Grails web stack. |
-
About 15 minutes
-
A favorite text editor or IDE
-
JDK 1.7 or later
-
You can also import the code from this guide as well as view the web page directly into Spring Tool Suite (STS) and work your way through it from there.
First you set up a basic build script. You can use any build system you like when building apps with Spring, but the code you need to work with Gradle is included here. Refer to Building Java Projects with Gradle if you have never worked with Gradle before.
In a project directory of your choosing, create the following subdirectory structure; for example, with mkdir -p src/main/groovy/hello
on *nix systems:
└── src └── main └── groovy └── hello
Below is the initial Gradle build file. If you are using Spring Tool Suite (STS), you can import the guide directly.
build.gradle
link:initial/build.gradle[role=include]
In this example, we model a simple Person entity using GORM:
src/main/groovy/hello/Person.groovy
link:complete/src/main/groovy/hello/Person.groovy[role=include]
The constraint block defines any validation rules. In this case, the only constraint is that both fields must be provided.
Create a controller for your Groovy-based Spring application:
src/main/groovy/hello/GreetingController.groovy
link:complete/src/main/groovy/hello/GreetingController.groovy[role=include]
The above example defines two REST endpoints:
-
The
addPerson
endpoint allows the addition of new people -
The
greet
endpoint greets a person by their first name.
Further down in the guide, you’ll see how to run the application and create new Person
entries.
Although it is possible to package this service as a traditional WAR file for deployment to an external application server, the simpler approach demonstrated below creates a standalone application. You package everything in a single, executable JAR file, driven by a good old Java main()
method. Along the way, you use Spring’s support for embedding the Tomcat servlet container as the HTTP runtime, instead of deploying to an external instance.
src/main/groovy/hello/Application.groovy
link:complete/src/main/groovy/hello/Application.groovy[role=include]
The main()
method defers to the SpringApplication
helper class, providing Application.class
as an argument to its run()
method. This tells Spring to read the annotation metadata from Application
and to manage it as a component in the Spring application context.
The @ComponentScan
annotation tells Spring to search recursively through the hello
package and its children for classes marked directly or indirectly with Spring’s @Component
annotation. This directive ensures that Spring finds and registers the GreetingController
, because it is marked with @Controller
, which in turn is a kind of @Component
annotation.
The @EnableAutoConfiguration
annotation switches on reasonable default behaviors based on the content of your classpath. For example, because the application depends on the embeddable version of Tomcat (tomcat-embed-core.jar), a Tomcat server is set up and configured with reasonable defaults on your behalf. And because the application also depends on Spring MVC (spring-webmvc.jar), a Spring MVC DispatcherServlet
is configured and registered for you — no web.xml
necessary! Auto-configuration is a powerful, flexible mechanism. See the API documentation for further details.
With the application started, you can create a new person by submitting a POST
request. For example using the *nix curl
tool:
$ curl -i -X POST -d "firstName=Homer&lastName=Simpson" http://localhost:8080/person/add
This results in the following response indicating that a resource was created:
HTTP/1.1 201 Created
Server: Apache-Coyote/1.1
Content-Length: 0
Date: Wed, 19 Feb 2014 13:21:06 GMT
You can then submit a GET
request to the greet
endpoint to receive a greeting:
$ curl -i http://localhost:8080/person/greet?firstName=Homer
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Content-Type: text/plain;charset=ISO-8859-1
Content-Length: 12
Date: Wed, 19 Feb 2014 13:22:15 GMT
Hello Homer!
Note
|
This RESTful front end was coded for demonstration purposes. You can plug in GORM wherever you need it for your application. |
The previous example required you to setup a Gradle or Maven build, but you can also use GORM in a simple Groovy script.
As an example, create a new file called app.groovy and put the following code in it:
app.groovy
link:script/app.groovy[role=include]
Note
|
It doesn’t matter where the file is. |
Next, install Spring Boot’s CLI.
Run it as follows:
$ spring run app.groovy
Note
|
This assumes you shut down the previous application, to avoid a port collision. |
Then simply follow the previous steps to test the application.
The javax.sql.DataSource
to be used to create connections can be configured as per the instructions in the Spring Boot user guide.