Integration Guide
This section is PlayRythm specific content, pure Rythm user should skip this section
Migrate your current project from Groovy template engine to Rythm
PlayRythm is designed to support smooth migrating from Groovy template engine.
PlayRythm hijack the template rendering process if it found the corresponding template exists in the app/rythm folder. Otherwise it quit silently and leave groovy engine to handle it. So what you need to do is just create an new template file using Rythm syntax and put it into the app/rythm folder. Before your new rythm template available your existing groovy template works like a charm, and after the rythm template created, Rythm will take over
See Step by step migrate groovy template to rythm.
Configuration
PlayMorphia provides default value for all configuration items, thus enable it to be used with zero configuration.
| name | description | default value |
rythm.cache.prodOnly | Set if cache service enabled only on prod mode. If true then cache service is disabled on dev mode | true |
rythm.cache.defaultTTL | Set default timeout duration in seconds | 3600 seconds |
rythm.gae | Set this to true if running in GAE. This will disable bytecode cache in Rythm | false |
rythm.noFileWrite | Same effect as rythm.gae | false |
rythm.compactOutput | If true then output content in compact mode, i.e. additonal white space and line breaks will be removed | true in prod mode |
Resolve groovy compilation error
Because groovy template engine does not provide a way to skip parsing any part of the template file, the rythm template file might cause compilation error during precompile process, where rythm has no way to identify some files been a rythm template or groovy template, e.g. some json generation template.
Start from version 0.9.5 it’s suggest to move all rythm templates or at least those compilation error causing templates to app/rythm folder from app/views folder.
Start from version 1.0.0 app/views folder as template root as no longer supported, please move all rythm view files into app/rythm folder. And there will be no groovy compilation error any more caused by rythm template
Customize Template Class
Start from v1.0.0-20121103, it allowed developer to customize template class by adding methods and imports to each template class generated by PlayRythm.
Add common imports to all template class
In order to add any arbitrary imports to all templates you can create a file named __add_on.import to app/rythm directory. Inside the file you add the staff needs to be imported one item at a line. For example:
play.modules.aaa.utils.AAA
play.modules.aaa.IAccount
play.modules.aaa.IRole
play.modules.aaa.IRight
After you added the imports, you can use those imported items in any one of your templates:
@extends(main)
<div id="top-bar">
...
<span class="welcome">
Welcome @AAA.me().getName()!
</span>
</div>
@if (AAA.isSuperUser()){
...
} else {
...
}
Add common methods to all template class
You can add any arbitrary method to all template class by put in them into a file named __add_on.src under app/rythm folder. For example:
// determine if current user has a certain role
protected boolean hasRole(String... roles) {
return AAA.hasRole(roles);
}
// check if current user is an admin
protected boolean isAdmin() {
return hasRole("admin");
}
// check if current user is a manager
protected boolean isManager() {
return hasRole("manager");
}
After you’ve added the customized methods, you can use them in any template:
@if (isAdmin()) {
<div class="admin-panel">
...
<div>
} else if (isManager()) {
<div class="manager-panel">
...
</div>
} else {
...
}
_url methods in template class
Specifically, PlayRythm (start from v1.0.0-20121103) add an new method named _url() to all template class so that you can use reverse url lookup easily in function call:
Example 1: use @url() tag:
$.post('@url(MyController.myAction)', {id: ...}, function(resp){...})
Example 2: use _url() method in script block:
@{String link = _url(true, "Clients.resetPasswordForm") + "?token=" + token;}
Example 3: use _url() method in tag call:
@def link(String label, String link, boolean showLink) {
@if(showLink) {<a href="@link">@label</a>}
else {<span>@label</span>}
}
@section("topactions") {
@link("Profile", _url("client", client.getId()), !_profile)
@link("Users", _url("clientUser", client.getId()), !_user)
@link("Subscription", _url("clientSubscription", client.getId()), !_sub)
}
There is one difference between passing parameters to @url() tag and _url() method:
Passing parameter to @url() tag:
$.get('@url(Application.myProfile(user.getId()))', function(resp){})
Passing parameter to @_url() method call:
@{String link = _url("Application.myProfile", user.getId())}
More about tags
So far you can keep rythm tags file under app/views/tags/rythm folder. However it is recommened not to use tags folder at all since every rythm template is a tag and can be called from any other rythm templates.
Start from v1.0.0, app/views/tags/rythm folder as tag root are no longer supported. Please just use app/rythm folder as template root and also the tag root.
E.g. suppose you have a template file app/views/Order/list.html, while you can use it as an ordinary template file, you also free to call it as a tag from other rythm template like: @Order.list(myOrders)
Invoking controller actions
PlayRythm 0.9.7 version released with this new feature which is first introduced in Japid template engine and people seems like it a lot. Basically you can invoke a controller action method directly from within the template and fill the place with the render result content. As with any function/tag/template invocation, action method invoke is very straghtforward. Excamples:
@controllers.Applicaiton.index().cache("1h");
@controllers.MyPortal.newsPanel(user);
Things you need to take care of:
You must use full qualified method name (including package name, class name) when you invoke controller action methodNo longer required since v1.0.0- You must pass exactly the parameters that matches what is defined in the controller action method signature. The parameter must be passed in by position
- The invocation is directly and will not go through the whole stack of Play’s action invocation process. Meaning the
@Before,@Afterand@Finallogic will NOT be executed, the same thing happens to all plugin’sbeforeActionInvocation(),onActionInvocationResult()andafterActionInvocation()hooks. - Start form v1.0 controller invocation is eligible to the following tag invocation extensions:
- Cache:
@controllers.Application.index().cache(“1h”) - Invoke with relative path/import path:
@import controllers.*; @Application.index() - Assign action result to a variable:
@controllers.Application.index().cache(“1h”).assign(“indexPage”). And you can use it as a normal template variable later on:@indexPage.raw() - Escape/un-escape render result:
@controllers.Application.index().raw()
- Cache:
New Cache4 annotation for caching action invocation
Though not so relevant to a template engine, Rythm still provides an new annotation com.greenlaw110.rythm.play.Cache4 for controller action (GET and HEAD) result caching. It improves the Play’s built-in play.cache.CacheFor in the following way:
- It will check
rythm.cache.prodOnlyconfiguration. If it’s true (default value), then cache get disabled on dev mode, which is a desired behavior - You can specify time by configuration name like
cron.xx.yy, and Rythm will goPlay.configurationto find out the cache time duration. Meaning the cache duration is configurable now. Thus mechanism (by app developer) is well decoupled from policy (by app deployer). Note time duration configuration name must start with "cron" - You can specify or configure a special time
foreverand the cache will never expire - An additional
useSessionDataattribute allow cache key generation to check the session data, which create a per-user-cache mechanism. This adds an new granularity to the cache system - It does not cache a
Redirectthat is not permanent, which enable some modules like secure that might trigger a temporary redirect to pass through cache mechanism - It does not cache
ErrorandNotFoundwhich enable the system to recover from external problems like database error or a network fault.
Sample:
@Cache4("cron.top10.cache")
public static void displayTop10() {
...
}
In your conf/application.conf:
cron.top10.cache=5mn
You can set useSessionData attribute to true to create a per-user-cache mechanism:
@Cache4(useSessionData = true, value="1h")
public static void showMyInterests() {
...
}
Cache4 side effects
Cache4 logic is implemented in RythmPlugin.beforeActionInvocation() and RythmPlugin.onActionInvocationResult() hooks. This indicates the following side effects of Cache4:
- if the
Resultget from cache, the all the following logic will get bypassed:- The
beforeActionInvocation()hooks of other plugins (with plugin id > 55) - All application defined
@Beforeand@Afterfilters
- The
- if the
Resultis missed in the cache, the all the following logic will get bypassed:- The
onActionInvocationResult()andafterActionInvocation()hook of other plugins (with plugin id > 55)
- The
So you should NOT use Cache4 annotation in the following cases:
- Your app or dependent modules have defined controller action filters which will change system state on each request (e.g. system access log)
- Your dependent modules implemented
beforeActionInvocation(),afterActionInvocation()andonActionInvocationResult()plugin hooks which might change system state on each request - If you don’t know what I am talking about here
For module or application defined filters that will throw out non-permanent Redirect result, for example, secure module will cause redirect if user has not logged in, in which case you are still safe to use Cache4 with useSessionData enabled. See above example.
@Cache4 does not require you to use Rythm template, it works with any controller action methods