Spring boot集成Httl模板引擎

Spring boot 1.5.3集成Httl模板引擎

两天时间花在这里了,还不算之前在新版SpringMVC中集成Httl
整理下思路:
刚开始使用@Restcontroller 导致返回直接json化 没有转发到httl引擎
实际问题是:使用Spring boot内嵌引擎模式之后,配置文件需要使用classpath方式加载,而不是servletContext方式加载
刚开始修改时候把httl.properties增加classpath 可以解决httl.properties加载,但是无法解决模板加载路径,后来使用新的Engine和新的ViewReslover是要避免mode=web,而是用classpath来加载Resouce,但是这也就无法使用Servlet进行输出.因此使用直接指定loader的方式解决问题.
样例项目:http://git.oschina.net/jaco2016/boot_httl

你可能感兴趣的:(spring-boot,httl)