Vaadin 8 on Grails 3
  • Introduction
  • Project setup
    • Environment setup
      • Unix based systems
      • Windows
    • Creating Project
      • Command line
      • IntelliJ IDEA
    • Plugin Configuration
      • UI class
      • URL mapping
      • Production mode
      • Async support
      • Themes
      • SASS compilation
      • Widgetset compilation
      • Servlet class
      • Spring component scan
      • UI provider
      • Open session in view
    • Clean up
    • Best Practices
  • Database
    • GORM
      • Create Domain Model
      • Transactions
      • LazyInitializationException
      • Open Session In View I.
      • Open Session In View II.
      • Table Container
    • Groovy SQL
      • Create Sql Bean
      • Execute SQLs
    • MyBatis
      • MyBatis Configuration
      • Reading Data with MyBatis
    • JdbcTemplate
      • Create JdbcTemplate Beans
      • Using JdbcTemplate
    • Clean Up When Using Alternatives
  • UI
Powered by GitBook
On this page

Was this helpful?

  1. Project setup

Environment setup

PreviousProject setupNextUnix based systems

Last updated 5 years ago

Was this helpful?

We are going to learn how to setup environment in order to start with development of Vaadin application in Grails.

Before you start, make sure Java is installed on your machine. If not, follow the for macOS, Linux or Windows.

Also make sure you have got the latest version of Grails on your local machine. Type grails --version in your console to find out what version is installed. You should see something like this:

| Grails Version: 3.2.8
| Groovy Version: 2.4.10
| JVM Version: 1.8.0_131

In case you do not have Grails installed on your machine, follow the instructions in this chapter.

instructions by Oracle