Struts2 + FreeMarker Tempalte (FTL) Integration example By Viral Patel on August 28, 2012 Welcome to Freemarker Tutorial Series. In previous post we created Spring MVC based Hello World Freemarker Template example . We learned few APIs of freemarker and also how to integrate it with Spring MVC based application. Following are the list of tutorials from Freemarker tutorial series. FreeMarker Tutorial Series Part 1: Introduction to Freemarker Templates Part 2: Freemarker Hello World example Part 3: Freemarker + Servlet Integration tutorial Part 4: Freemarker + Spring MVC Integration tutorial Part 5: Freemarker + Struts2 Integration tutorial Today we will create a Struts2 based application that uses Freemarker FTL as view instead of JSP. This would give you a good insight in Struts2 + Freemarker integration. The application is similar to previous tutorial’s User app, where a list of users will be displayed and we can add new user. The a...