Giter VIP home page Giter VIP logo

computer-japid's Introduction

A Sample Application that Demos Japid Rendering Engine with Play 2.1

Bing Ran([email protected])

This is a classic CRUD application, backed by a JDBC database, rendered with Japid42 for play2.

It demonstrates:

- Accessing a JDBC database, using JPA.
- Achieving, table pagination and CRUD forms.
- Rendering data with Japid.

japid42 is a pure java template engine specifically designed for programming Java web applications for Play 2.0.x and 2.1.x series. It’s hosted at: http://github.com/branaway/japid42
It offers extremely fast script change and reloading. Roughly the default Scala based rendering engine is 10x slower in reloading a changed view. Changes in templates will never trigger an application reload.

To run the sample, make sure you’re using play 2.1.0.

  1. git clone git://github.com/branaway/computer-japid.git
  2. cd computer-japid
  3. play run

The application is now accessible at http://localhost:9000

The Anatomy of a Japid application

Dependency

The first thing is to declare the dependency of japid in the the build.scala:

import sbt._
import Keys._
import play.Project._
object ApplicationBuild extends Build {
    val appName         = "computer-japid"
    val appVersion      = "1.0"
    val appDependencies = Seq(
      "org.hibernate" % "hibernate-entitymanager" % "3.6.9.Final",
      "japid42" % "japid42_2.10" % "0.9"
    )
    val main = PlayProject(appName, appVersion, appDependencies).settings(
      ebeanEnabled := false,
      resolvers += Resolver.url("Japid on Github", url("http://branaway.github.com/releases/"))(Resolver.ivyStylePatterns)
    )
}

A resolver pointing to the japid repository on Github is added to the resolver chain. Japid is then added to the dependency list.

Initialize Japid

The initialization of Japid takes place in Global.java in the app folder:

import play.Play;
import play.mvc.Http.RequestHeader;
import play.mvc.Result;
import play.mvc.Results;
import cn.bran.play.JapidController;


public class Global extends cn.bran.play.GlobalSettingsWithJapid {
	@Override
	public void onStartJapid() {
	    setTemplateRoot("japidroot", "modules/foo/japidroot"); // the module's japid root must be specified if you have one
		setLogVerbose(true);
		setKeepJavaFiles(false); // keep the Java code derived from Japid scripts in memory only
	}

	@Override
	public Result onError(RequestHeader h, Throwable t) {
		if (Play.application().isProd())
			return Results.internalServerError(JapidController.renderJapidWith("onError.html", h, t));
		else
			return super.onError(h, t);
	}

	@Override
	public Result onBadRequest(RequestHeader r, String s) {
		if (Play.application().isProd())
			return Results.badRequest(JapidController.renderJapidWith("onBadRequest.html", r, s));
		else
			return super.onBadRequest(r, s);
	}

	@Override
	public Result onHandlerNotFound(RequestHeader r) {
		// usually one needs to use a customized error reporting in production.
		//
		if (Play.application().isProd() || Play.application().isDev())
			return Results.notFound(JapidController.renderJapidWith("onHandlerNotFound.html", r));
		else
			return super.onHandlerNotFound(r);
	}
}

Note:

  1. Global must inherit from JapidRenderer.
    There are more options that one can configure about Japid, such as the default location of Japid scripts, the interval between file change detections in dev mode and import statement that will be added to all the Japid scripts. You can do that in onStartJapid();
  2. I have also over-ridden three other methods in this class to provide customized information page when 404, 500 errors are encountered in production. To test these handlers in DEV mode, please adjust the code accordingly in the if statement.
    Check out this line:

    return Results.internalServerError(JapidController.renderJapidWith(“onError.html”, h, t));

    The error message is generated with JapidController.renderJapidWith(“onError.html”, h, t), which passes the h and t arguments to a Japid script named “onError.html”, which is located in japidroot/japidviews.

Controllers

The difference between the using Japid and the default Scala-based template engines is:

  1. Controllers inherit from JapidController instead of the plain Controller. JapidController class is a child class of the Controller class. It adds a bunch of renderJapid(…) and renderJapidWith(…) static methods for the controller to invoke Japid scripts. This is not absolutely required, but is more of a convenient arrangement.
  2. The default template engine are invoked explicitly in the controllers. i.e., the view classes are statically linked to the controller code. On the other hand, Japid views are always invoked by name. Japid scripts are compiled “On demand”.
package controllers;
import java.util.List;
import models.Computer;
import play.data.Form;
import play.data.Form.Field;
import play.data.validation.ValidationError;
import play.db.jpa.Transactional;
import play.mvc.Result;
import utils.Forms;
import cn.bran.play.JapidController;
// only a few actions are shown
public class Application extends JapidController {
    @Transactional(readOnly=true)
    public static Result list(int page, String sortBy, String order, String filter) {
    	return renderJapid(Computer.page(page, 10, sortBy, order, filter), sortBy, order, filter);
    }
    
    @Transactional(readOnly=true)
    public static Result edit(Long id) {
        Form<Computer> computerForm = form(Computer.class).fill(
            Computer.findById(id)
        );
        return renderJapid(id, computerForm);
    }
    
    @Transactional
    public static Result update(Long id) {
        Form<Computer> computerForm = form(Computer.class).bindFromRequest();
        if(computerForm.hasErrors()) {
            return badRequest(renderJapidWith("@edit.html", id, computerForm));
        }
        computerForm.get().update(id);
        flash("success", "Computer " + computerForm.get().name + " has been updated.");
        return GO_HOME;
    }
    
    @Transactional(readOnly=true)
    public static Result create() {
        Form<Computer> computerForm = form(Computer.class);
        return ok(renderJapidWith("@createForm.html", computerForm));
    }
// ...    
}

As you can see, using japid in controllers is a simple replacement of explicit invocation of the scala view class with renderJapid(…) or renderJapidWith(“japid script name”, …).

The renderJapid() method looks for a japid script in a folder rooted in “japidroot/japidviews”, the structure of which is parallel to the package/class structure of the controllers.

The renderJapidWith() method take the name of the japid script as the first parameter. I put an “@” in front of the script name, to indicate that the script is in the same folder as the “default” japid script, otherwise I need to specify the script with the full path starting with “japidviews”, such as “japidviews/Application/edit.html”.

Either method returns an instance of Play Result, which is a valid object to return from the actions. It’s also a valid object to wrap in ok(), badRequest() calls, which will handle the headers properly.

It’s important to note that since Japid comes with its own compiler and class loader that uses Play’s classloader as the parent classloader, not the other way around, controllers cannot reference the japid views directly while views can reference models and controllers.

Render Data in Japid Scripts

All scripts are put in the “japidroot/japidviews” folder. The “japidroot” part is configurable through JapidRender.setTemplateRoot(…).

The structure of the root folder is parallel to the structure of the controllers folder, only the action names are mapped a bunch of files in a folder named after the controller class.

Let’s take a look at the list.html, which is the default view script of the list(…) action. It’s a little bit long…

@(Computer.Page currentPage, String currentSortBy, String currentOrder, String currentFilter)

@extends main("List all the computers")

@def link(Integer newPage, String newSortBy)
	%{
		String sortBy = currentSortBy;
	    String order = currentOrder;
	    
	    if(newSortBy != null) {
	        sortBy = newSortBy;
	        if(currentSortBy == newSortBy) {
	            if(currentOrder == "asc") {
	                order = "desc";
	            } else {
	                order = "asc";
	            }
	        } else {
	            order = "asc";
	        }
	    }
	    // Generate the link
	    p(routes.Application.list(newPage, sortBy, order, currentFilter));
	    
	}%
@

@def header (String key, String title)
    <th class="$key.replace(".","_") header ${currentSortBy.equals(key) ? currentOrder.equals("asc") ? "headerSortDown" : "headerSortUp" : ""}">
        <a href="$Application.link(currentSortBy, currentOrder, currentFilter, 0, key)">~title</a>
    </th>
@


    <h1 id="homeTitle">
    
    $getMessage("computers.list.title", currentPage.getTotalRowCount())
    
    </h1>

    @if(flash.containsKey("success")) {
        <div class="alert-message warning">
            <strong>Done!</strong> $flash.get("success")
        </div>
    @} 

    <div id="actions">
        
        <form action="$Application.link(currentSortBy, currentOrder, currentFilter, 0, "name")" method="GET">
            <input type="search" id="searchbox" name="f" value="$currentFilter" placeholder="Filter by computer name...">
            <input type="submit" id="searchsubmit" value="Filter by name" class="btn primary">
        </form>
        
        <a class="btn success" id="add" href="$routes.Application.create()">Add a new computer</a>
        
    </div>
    
    @if(currentPage.getTotalRowCount() == 0) {
        
        <div class="well">
            <em>Nothing to display</em>
        </div>
        
    @} else {
        <table class="computers zebra-striped">
            <thead>
                <tr>
                    $header("name", "Computer name")
                    $header("introduced", "Introduced")
                    $header("discontinued", "Discontinued")
                    $header("company.name", "Company")
                </tr>
            </thead>
            <tbody>

                @for(Computer computer : currentPage.getList()) {
                    <tr>
                        <td><a href="$routes.Application.edit(computer.id)">$computer.name</a></td>
                        <td>
                            @if(computer.introduced == null) {
                                <em>-</em>
                            @} else {
                                $format(computer.introduced, "dd MMM yyyy")
                            @}
                        </td>
                        <td>
                            @if(computer.discontinued == null) {
                                <em>-</em>
                            @} else {
                               	$format(computer.discontinued, "dd MMM yyyy")
                            @}
                        </td>
                        <td>
                            @if(computer.company == null) {
                                <em>-</em>
                            @} else {
                                $computer.company.name
                            @}
                        </td>
                    </tr>
                @}

            </tbody>
        </table>

        <div id="pagination" class="pagination">
            <ul>
                @if(currentPage.hasPrev()) {
                    <li class="prev">
                        <a href="$link(currentPage.getPageIndex() - 1, null)">&larr; Previous</a>
                    </li>
                @} else {
                    <li class="prev disabled">
                        <a>&larr; Previous</a>
                    </li>
                @}
                <li class="current">
                    <a>Displaying $currentPage.getDisplayXtoYofZ()</a>
                </li>
                @if(currentPage.hasNext()) {
                    <li class="next">
                        <a href="$link(currentPage.getPageIndex() + 1, null)">Next &rarr;</a>
                    </li>
                @} else {
                    <li class="next disabled">
                        <a>Next &rarr;</a>
                    </li>
                @}
            </ul>
        </div>
        
    @}

Notes:

Parameter list

@(Computer.Page currentPage, String currentSortBy, String currentOrder, String currentFilter)

As can be seen, it’s the same as in the scala template, only declared in the Java way: the type proceeds the name.
It can span multiple lines of course.

The layout

The parent layout of a “page” is specified with the extends key word.

@extends main("...")

One concept to note is that Japid has the concept of “layout”, which is inherited from Play 1. In Play 2, the layout concept is merged to the standard template since it supports closure.
The good thing about it is that the whole script does not need to be wrapped in a big pair of braces.

The layout is in the main.html file that I don’t include here.

Note:

  1. A layout can have parameters, just like any regular templates.
  2. Use “$” to evaluate an expression in raw. It can be $expr or ${expr}. The latter makes the expression part eye friendlier, and also allows the expression to span more than one line. The shorter version is smart enough to know the boundary of an expression, as long as it’s on the same line.
  3. The HTML safe way of expression is “~” or “~{}”. Unless you’re sure of the nature of the expressions, prefer “~” over “$” for expressions.
  4. Reverse URL lookup in Play 2 is a simple method call. Therefore it’s just an expression in Japid:
    
    $routes.Assets.at("stylesheets/bootstrap.min.css")
    or:
    $routes.Application.index()
    
  5. To “call back” to the body, use @doLayout in the parent layout.

In fact japid can use a regular template as a layout, just like in the Play 2.


@t myMain("the title") |
   the rest of the body
@
  • The “@t” notation is to invoke another template. Sometimes those templates are referred to as “tags”, although there is no difference between a tag and a regular template. Any regular template can be invoked as tags.
  • The “myMain” script is almost the same thing as the main.html, except it uses @doBody instead of @doLayout.
  • The bar at the end of the line must present. It may be followed by a parameter list if there is any.
  • The whole body must be ended with another “@” sign.

The comments

Comments are wrapped in *{ }*


*{
I have a lot to say
}*

@// one liner comment, just like Java.

Local function

Use “def” to define a parameterized template snippet.


@def link(Integer newPage, String newSortBy)
 %{
	String sortBy = currentSortBy;
    String order = currentOrder;
    
    if(newSortBy != null) {
        sortBy = newSortBy;
        if(currentSortBy == newSortBy) {
            if(currentOrder == "asc") {
                order = "desc";
            } else {
                order = "asc";
            }
        } else {
            order = "asc";
        }
    }
      // Generate the link
    p(routes.Application.list(newPage, sortBy, order, currentFilter));
    
 }%
    
@


@def header (String key, String title)
    <th class="$key.replace(".","_") header ${currentSortBy.equals(key) ? (currentOrder.equals("asc") ? "headerSortDown" : "headerSortUp") : ""}">
        <a href="$Application.link(currentSortBy, currentOrder, currentFilter, 0, key)">~title</a>
    </th>
@
  • A template snippet is local to the current template. It wraps a chunk of template that can be used multiple times, usually with different arguments, in the same file.
  • It has access to the arguments to the whole Japid script.
  • It ends with a Japid delimiter “@”.

Here are some Japid syntax:

  • %{ … }%: to include a block of Java code
  • the p() method is to print a string value to the current template output stream.
  • $key.replace(“.”,“_”): an expression
  • ${currentSortBy.equals(key) ? (currentOrder.equals(“asc”) ? “headerSortDown” : “headerSortUp”) : ""}: a Java expression
  • $Application.link(currentSortBy, currentOrder, currentFilter, 0, key): a Java expression. The link method is a static method I conveniently put in the Application class. It’s exactly the same link as defined above, only to demo how this can be done alternatively.

To use the local template snippet, simply call it in an expression:

	the header: $header("name", "Computer name")
	the link: $link(currentPage.getPageIndex() - 1, null)

I18n

The $getMessage(…) is to format a string based on the current language settings. Play2 manual has more about this.


	$getMessage("computers.list.title", currentPage.getTotalRowCount())

If statement

   @if(flash.containsKey("success")) {
        <div class="alert-message warning">
            <strong>Done!</strong> $flash.get("success")
        </div>
   @} 

It’s regular Java stuff. Remember: @ starts a line of Java code, unless @ is followed by some special predefined directives.

The ending brace must be led with an @ sign too, unlike the Scala engine of Play2. It seems Japid is not smart enough to end an if statement with a bare “}”, but I have chosen to do this to make the parser more robust.

The if statement has a minimalism version, if it suits your taste:


@if flash.containsKey("success")
	//
@else
	//
@

For Looping

You can use whatever looping syntax that fits your need best in Java. I’m using a for loop in the list.html:


@for(Computer computer : currentPage.getList()) {
	//
@}

The for loop has a minimalistic version too:


@for Computer computer : currentPage.getList()
	//
@

There is very good reason to use the shorter version: it makes available a bunch of predefined variables associated with the current loop:

@for String name: names 
    Your name is: $name,
    the total size: $_size,
    the current item index: $_index,
    is odd line? $_isOdd
    is first? $_isFirst
    is last? $_isLast
@

The _size and _index are of integer type. The others are of boolean type.

Format and a bunch of utility methods

You may wonder where the format method in the following expression comes from.


$format(computer.introduced, "dd MMM yyyy")

It’s in a class named WebUtils in the Japid jar and this classes contained quite a few convenient static methods available in the Japid scripts. Read it for your pleasure.

Importing classes to Japid scripts.

Japid scripts are transformed to Java files which are then compiled to Java classes. You can import any Java class to your scripts just like in any Java source file:


@import com.mycompany.Foo
@import com.mycompany.Utils.*

No semi-colon is required at the end.

A few packages and classes are automatically imported for you:


import java.util.*;
import java.io.*;
import play.mvc.Http.Context.Implicit;
import play.i18n.Lang;
import play.data.Form;
import play.data.Form.Field;
import play.mvc.Http.Request;
import play.mvc.Http.Response;
import play.mvc.Http.Session;
import play.mvc.Http.Flash;
import play.data.validation.Validation;
import static cn.bran.japid.util.WebUtils.*;
import controllers.*;
import models.*;

As you can see, a bunch of play’s implicit object is also available in the scripts.

Form handling

I’ll use another Japid script as an example:

@(Long id, Form<Computer> computerForm)
@extends main("Edit A Computer")
    <h1>Edit computer/Japid</h1>
    <form method="POST" action="$routes.Application.update(id)">
        <fieldset>
            @t myInputText(computerForm.apply("name"), "名称")
 			${myInputText.apply(
				computerForm.apply("introduced"), 
				"Introduced Date"
				)
			}
            $Application.inputText(computerForm.apply("discontinued"), "Discontinued Date")
            @t select( \
            	computerForm.apply("company.id"), \
                Company.options(), \
                "Company", \
				"- Choose a company -" \
            )
        </fieldset>
        <div class="actions">
            <input type="submit" value="Save this computer" class="btn primary"> or 
            <a href="$routes.Application.index()" class="btn">Cancel</a> 
        </div>
    </form>
    <form method="POST" action="$routes.Application.delete(id)" class="topRight">
    	<input type="submit" value="Delete this computer" class="btn danger">
    </form>

Note:
Japid does not provide built-in helpers to handle forms and fields. I feel the helpers does not provide enough values. One can easily added helpers using either the local snippet or encapsulate the template in a standalone template.

The “Form” class in Play2 contains all functionalities of data binding, model validation, field constraints and format requirement. Although written in Scala, it’s totally useable in Japid as well.

A “Form” contains a bunch of "Field"s, each of which may carry validation annotations.

In the above example, one of the parameters is a form of Computer:


@(Long id, Form<Computer> computerForm)

Of course you can pass in an instance of Computer directly without wrapping it in a Form. But then you need do the validation yourself.


@(Long id, Computer computer)

To get field of the form, we call Form’s apply(…) method:


  @t myInputText(computerForm.apply("name"), "Name")

The myInputText is a template defined in myInputText.html:


	@import utils.Forms
	@(Field fld, String label)
	<div class="clearfix ${Forms.hasError(fld) ? "error" : ""}">
    	<label for="$fld.name()">$label</label>
    	<div class="input">
		    <input type="text" id="$fld.name()" name="$fld.name()" value="$fld.value()"/>
	    	<span class="help-inline">$Forms.fieldSpecs(fld)</span> 
	    </div>
 	</div>

The Forms utility class is in the utils package in the app folder. Check it out.

The Field’s name and value are obtained with the name() and value() methods.

The myImputText template can be invoked in two ways:


	@Field f = computerForm.apply("name");
	@t myInputText(f, "名称")
		or:
	$myInputText.apply(f, "Name")

Here I assigned the field to a variable before using it.

The @t syntax is more powerful that it can take a block of parameterized template text:


@t myTag(String s) | String name, int age
	the returned value: $name, $age
@

The myTag template may look something like this:


@(String msg)
do someting about it, then
@doBody("my name", 18)
do more about it

When merged together, it outputs something like this:


do someting about it, then
	the returned value: my name, 18
do more about it

The apply() method of any templates returns a piece of content that can be merged to the current text stream. But this way of invoking another template does not take “callbacks”, thus less powerful.

Calling a template in an expression makes it possible to span multiple lines when combined with ${} or ~{}, while @t syntax assumes the whole statement is a one-liner.

If you really like using the @t and want to span multiple lines, use a “line continuator”:


@t select( \
	computerForm.apply("company.id"), \
	Company.options(), \
	"Company", \
	"- Choose a company -" \
)

Summary

Java compiler is a very fast machine comapred with Scala compiler, almost 10x faster. Japid makes deveoping Java Play application a breeze.

I hope I have explained the sample well enough to get interested in trying Japid in your own Java Play projects.

Feedback please goes to [email protected]

Appendex

History

2012.11.1

  1. now referenced japid42 repo on github. There is no need to build japid locally.

2012.10.26

Bing: I have ported the app to using Japid as the rendering engine. Please see the

  1. project/Build.scala
  2. app/Global.java: to initialize the Japid and added customized error handlers
  3. app/controllers/Application.java and
  4. the japidroot folder

to understand the integration of Japid with Play2.

2013.2.8

  1. made to use japid42 version 0.8, which was Play 2.1.0 compatible
    2013.5.10
  2. made to use japid42 version 0.9

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.