Faster Groovy Templates module
This is a module for Play! Framework 1 applications which replaces the default groovy template implementation with GT-Engine which is faster and uses less memory.
GT-Engine is also used in the Play 2.0 module that enables legacy support for groovy templates.
History
- Version 1.4 – 4. mar 2012
- Fixed issue #13 – More intelligent when finding end-of-tag '}'
- Fixed issue #14 – GroovyTemplate.ExecutableTemplate.getProperty
- Version 1.3 – 27. feb 2012
- Improved error reporting
- Version 1.2 – 19. feb 2012
- Fixed issue related to calling method on java object with name-collision with JavaExtension-name
- Version 1.1 – 14. feb 2012
- Fixed various bugs related to #{set/} and #{get/}
- Version 1.0 – 12. feb 2012
Features
- Almost 100% compatible with old Play Groovy template implementation (See note below for more info)
- Run faster
- Compiles faster
- Can write generated source to disk so you can step-debug it
- Uses less memory
- Supports old FastTag
- Supports new GTFastTag which is optimized for inserting rendered tag-body-content (without copying)
Usage
Do I have to modify my templates?
If you use program-flow-fragments inside groovy code snipits you have to modify it like this:
You can no longer use partial-program-flow-code like this:
{ if( expression) { }
or
{ myList.foreach() { }
Instead you have to use:
#{if expression}
or
#{list myList}
Sample application
Since this module just replaces the default template engine, there is not much new to show in a sample application. But you can find a simple sample application in the samples-folder.
Getting started
All this sample application is doing, is to add dependency to the “Faster Groovy Templates” module.
Usage
All you have to do when using this module is to enable it.
Downloading it automatically
You can use Plays dependency mechanism to automatically download and use this plugin like this:
Edit your “dependencies.yml” like this:
require:
- play
- play -> fastergt 1.0
Remember to call “play dependencies” before “play run” the first time.
Downloading it manually
Download it from github (or git clone it), then add dependency to it like this:
One way of including the module is by using the dependencies.yml file. Remember to call “play dependencies” before “play run” the first time.
require:
- play
- faster-groovy-templates -> faster-groovy-templatesrepositories:
- My modules:
type: local
artifact: ${application.path}/relativePathToWhereYouDownloadedIt/[module]
contains:
- faster-groovy-templates
Or you can add it do the application.conf file like this:
module.faster-groovy-templates=../relativePathToWhereYouDownloadedIt/
Configuration
The following configuration-setting enables “Faster Groovy Templates” to write the generated java and groovy source code to disk. This makes it possible to step-debug the template-code.
Add the following to “application.conf”:
save-gttemplate-source-to-disk = template-src
Project page
This module is hosted on github
Issues should be posted here