Getting started with Grails 1/2
IntelliJ IDEA tightly integrates with Grails, and makes it possible to work with Grails applications from within the IDE, sparing you from the need to use a command line. Grails support in IntelliJ IDEA lets you do the following:
Before you start
Before you start creating your Grails project, make sure that you have Grails SDK downloaded on your machine. You can download the latest SDK version from the Grails page. Also, make sure that you are working with IntelliJ IDEA ultimate edition, version 9 or later. See the latest available version.
Creating Grails Project
Do one of the following:
If you are going to create a new project: click Create New Project on the Welcome screen or select File | New | Project.
As a result, the New Project wizard opens.
If you are going to add a module to an existing project: open the project to which you want to add a module, and select File | New | Module.
As a result, the New Module wizard opens.
Project SDK that you are going to use.
Grails SDK Home- select a local Grails installation that is represented by a library.
Create create-app or create-plugin- select one of these options depending on what you want to create.
Options- specify additional options.
Click Next.
Specify the name and location settings.
Click Finish.
Since we chose to create an application, IntelliJ IDEA executes the create-app target, which generates the directory structure of a Grails application. All output information is displayed in the Console:
Exploring Grails Application
IntelliJ IDEA enables you to explore your Grails application from two different viewpoints:
The Project tool window shows the typical Grails directory structure.
The Grails tool window shows the logical set of Grails application elements (Domain classes, Controllers, Views, etc.)
Creating Elements in your Grails Project
To illustrate IntelliJ IDEA abilities, let's start developing a very basic library management system.
- Create a domain class for the library system. This class will represent a book within a library.
There are two possible ways of doing that in IntelliJ IDEA:Execute a Grails target. Press Ctrl+Alt+G, and enter Grails target name.
Note that code completion Ctrl+Space is available in the Run Grails target dialog box:Right-click the Grails tool window background, and choose New | Grails Domain class on the context menu:
Domain class Book.groovy
Test class BookTests.groovy
For the purposes of our tutorial, we will work with the domain class Book.groovy.
Now it is just a stub, and we'll add the following fields:Book title
Author name (may be two author names?)
Description
Publisher
Date published
Copyright
ISBN
Reader name
Date taken
Open Book.groovy for editing (F4 ), and type these fields in your code, using the code completion Ctrl+Space:
- Provide a controller and views.
You can do it in two ways:run the Grails target generate-all Book
use Scaffolding - the handy tool that you can find at the top of the domain class editor:
IntelliJ IDEA works hard (you can see that in the console), and produces the BookController.groovy class: Next, create views the same way: For each method of the controller, IntelliJ IDEA generates a file with the .gsp extension (create.gsp, edit.gsp, list.gsp, show.gsp).
Running the Application
There are more things you might want to do to make your application useful, but let's try to run it straight away with the default settings. To do that, press Shift+F10 and after a turmoil of messages in the Console, your application starts in your default browser, with the following URL in the address bar: http://localhost:8080/GrailsDemo.
On that page, you will see something like this: Click the controller link to open the list of books, which is empty by default. Now, you can try to fill out the entries of your library management system, for example, click the New Book button to add a book: As you see, our basic library management system is ready. If you want to extend its functionality or you are not very happy with the code generated by Grails, you can modify the files in the IntelliJ IDEA editor to fit your particular needs, and rerun the application.
Finally, if you want to evaluate your effort for creating and running your Grails application under IntelliJ IDEA, view the number of files and lines of source code.
Press Ctrl+Alt+G, type stats
in the popup, and see the results in the Console: