ULei / spring-comparing-template-engines

Demo project to show different Java templating engines in combination with Spring MVC

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

#Comparing Template engines for Spring MVC

Build Status

This is a demo project, which accompanied my "Shoot-out! Template engines for the JVM" presentation, which shows the differences among several Java template engines in combination with Spring MVC. Template engines used in this project are:

Build and run

You need Java 7 and Maven 3 to build and run this project. Build the project with

mvn package

Run the project with

mvn tomcat7:run

See the demo URLs:

Benchmarking

In case you want to benchmark the different template engines I would recommend using Apache HTTP server benchmarking tool or Siege an HTTP/HTTPS stress tester. You can try any of the following URLs.

$ ab -n 10000 -c 10 http://localhost:8080/spring-comparing-template-engines/jsp
$ ab -n 10000 -c 10 http://localhost:8080/spring-comparing-template-engines/velocity
$ ab -n 10000 -c 10 http://localhost:8080/spring-comparing-template-engines/freemarker
$ ab -n 10000 -c 10 http://localhost:8080/spring-comparing-template-engines/thymeleaf
$ ab -n 10000 -c 10 http://localhost:8080/spring-comparing-template-engines/mustache
$ ab -n 10000 -c 10 http://localhost:8080/spring-comparing-template-engines/jade
$ ab -n 10000 -c 10 http://localhost:8080/spring-comparing-template-engines/pebble
$ ab -n 10000 -c 10 http://localhost:8080/spring-comparing-template-engines/handlebars
$ ab -n 10000 -c 10 http://localhost:8080/spring-comparing-template-engines/jtwig

For creating the below benchmark results I used ApacheBench(Version 2.3) with the following settings:

ab -n 25000 -c 25 -k http://localhost:8080/spring-comparing-template-engines/jsp

With 25 concurrent requests and 25.000 requests in total this resulted in the following numbers:

Benchmarks 2015

These tests were done on a local machine with the following specs:

Mac OS X Version 10.11.1
2,3 GHz Intel Core i7 Quad core
ava(TM) SE Runtime Environment (build 1.8.0_51-b16)
Java HotSpot(TM) 64-Bit Server VM (build 25.51-b03, mixed mode)
Apache Tomcat 7.0.53 with 512M RAM

Results in order (high to low):

Total time taken for processing 25.000 requests with a concurrency level of 25. (lower is better)

jTwig                   4.709 seconds
Thymeleaf               4.147 seconds
Scalate - Scaml         3.479 seconds
Handlebars              2.936 seconds
Jade4j                  2.735 seconds
Freemarker              2.637 seconds
HTTL                    2.531 seconds
Pebble                  2.512 seconds
Velocity                2.491 seconds
Mustache (JMustache)    2.326 seconds
JSP                     2.227 seconds

Keep in mind that in the real world, these results will differ depending on the complexity of the templates, hardware, etc, so it's just an indication and if you want to know the truth you will have to run the benchmark yourself to see how such a template engine performs in your specific environment.

###How were the results measured?

Before the performance of each template engines was measured, there were at least 2 dry runs with the exact same settings, to make sure that initialization of the engines, warm up of the JVM and additional caches have taken place. There were at least 5 iterations of the same benchmark before calculating the average time it took.

###For Mac OSX users

Mac OS X has only 16K ports available that won't be released until socket TIME_WAIT is passed. The default timeout for TIME_WAIT is 15 seconds. Consider reducing in case of available port bottleneck.

You can check whether this is a problem with netstat:

# sysctl net.inet.tcp.msl
net.inet.tcp.msl: 15000

Now if you want to change this you can do so by doing:

# sudo sysctl -w net.inet.tcp.msl=1000
net.inet.tcp.msl: 15000 -> 1000

In case you still run into problem you might want to read this thread on ephemeral ports.

##Contributing

In case you see an improvement to the benchmark or know about ways to improve the results, please file an issue and send a pull request.

About

Demo project to show different Java templating engines in combination with Spring MVC

License:Apache License 2.0


Languages

Language:Java 41.5%Language:JavaScript 29.0%Language:HTML 26.0%Language:FreeMarker 3.6%