📜 ⬆️ ⬇️

Grails 2.0 released

After a year of development and three release candidates, the SpringSource team presented a new version of the web framework - Grails 2.0. I often use Grails in my projects and closely monitor the process of developing and releasing new releases.

It is interesting to note that the release was originally planned for Grails 1.4, but there were too many fundamental changes, and Grails assigned version 2.0.
So I will list what's new in the new reincarnation of Grails:


In my opinion, the most fundamental change in Grails is the new mechanism for reloading changes.
Earlier, the framework used class-loaders, in the new release this approach was replaced by the JVM agent. According to the developers, this change greatly improved the stability of the process of reloading changes, since the class files that are stored on the disk remain consistent with the class files that are loaded in memory.
For us, this means that we will use the clean command much less often, another good news.

This is just a short list of innovations that I identified as the most important; again
that there are really a lot of them - by the way, about 900 (!) defects were fixed during development.
You can read a full description of innovations in the innovations section .
')
The new version is available for download on the official website of the project .

Source: https://habr.com/ru/post/134701/


All Articles