The V in Templating
We still need a saner way to handle views than returning strings of HTML. Following the M101J course, I'm installing Freemarker, a very simple templating engine.
The dependencies details for Maven can be found on the artifact page:
<dependency> <groupId>org.freemarker</groupId> <artifactId>freemarker</artifactId> <version>2.3.19</version> </dependency>
and since it resides on the central Maven repo like Java Mongo, that's pretty much everything.
We're ready for yet another Hello World class.



















