您好,登录后才能下订单哦!
这篇文章给大家介绍如何在SpringBoot中整合freemarker,内容非常详细,感兴趣的小伙伴们可以参考借鉴,希望对大家能有所帮助。
项目文件目录:
首先,pom.xml
中导入freemarker
的依赖:
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-freemarker</artifactId> </dependency>
在application.properties
(或yml)配置文件中加入freemarker
相关配置:
# freemarker静态资源配置 # 设定ftl文件路径 spring.freemarker.tempalte-loader-path=classpath:/templates # 关闭缓存,及时刷新,上线生产环境需要修改为true spring.freemarker.cache=false spring.freemarker.charset=UTF-8 spring.freemarker.check-template-location=true spring.freemarker.content-type=text/html spring.freemarker.expose-request-attributes=true spring.freemarker.expose-session-attributes=true spring.freemarker.request-context-attribute=request spring.freemarker.suffix=.ftl
这里指定了freemarker
文件的路径是classpath/templates
,在resources文件夹下的templates新建freemarker文件夹,并且在其中新建index.ftl(上面配置文件中已经指定了freemarker模板的文件后缀为ftl):
<!DOCTYPE html> <html> <head lang="en"> <meta charset="UTF-8"/> <title></title> </head> <body> FreeMarker模板引擎 <h2>${resource.name}</h2> <h2>${resource.website}</h2> <h2>${resource.language}</h2> </body> </html>
我们在resources下新建resource.properties:
com.haozz.opensource.name=wangshu com.haozz.opensource.website=www.haozz.top:18158/ com.haozz.opensource.language=chinese
在SpringBoot启动类统计目录下新建utils包,在其中新建Resources类(此处使用配置文件引入相关数据):
package com.haozz.freemarkerdemo.utils; import org.springframework.boot.context.properties.ConfigurationProperties; import org.springframework.context.annotation.Configuration; import org.springframework.context.annotation.PropertySource; //表示这个类是一个读取配置文件的类 @Configuration //指定配置的一些属性,其中的prefix表示前缀 @ConfigurationProperties(prefix = "com.haozz.opensource") //指定所读取的配置文件的路径 @PropertySource(value = "classpath:resource.properties") public class Resource { private String name; private String website; private String language; //...setter and getter }
新建Controller包,新建FreeMarkerCtrl类:
package com.haozz.freemarkerdemo.controller; import com.haozz.freemarkerdemo.utils.Resource; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Controller; import org.springframework.ui.ModelMap; import org.springframework.web.bind.annotation.RequestMapping; @Controller @RequestMapping(value = "/ftl") public class FreeMarkerCtrl { @Autowired private Resource resource; @RequestMapping(value = "index") public String index(ModelMap map){ map.addAttribute("resource",resource); return "freemarker/index"; } }
这里的ModelMap就相当于SpringMVC中的ModelAndView,其中的很多方法也很类似,我们这里返回的字符串就是freemarker模板的路径,不用写后缀,因为配置文件中已经指定了后缀为.ftl
浏览器发起请求,得到结果:
这样,SpringBoot整合freemarker就好了。
我们再来试一下表格的形式。
FreeMarkerCtrl中新增方法:
@RequestMapping(value ="center") public String center(ModelMap map){ map.put("users",parseUsers()); map.put("title","用户列表"); return "freemarker/center/center"; } private List<Map> parseUsers(){ List<Map> list= new ArrayList<>(); for(int i=0;i<10;i++){ Map map= new HashMap(); map.put("name","kevin_"+i); map.put("age",10+i); map.put("phone","1860291105"+i); list.add(map); } return list; }
在resources/templates/freemarker下新建center文件夹,新建center.ftl:
<html lang="zh-CN"> <head> <meta charset="UTF-8"/> <title>${title}</title> <style> table { width: 50%; font-size: .938em; border-collapse: collapse;/*边框合并*/ } th { text-align: left; padding: .5em .5em; font-weight: bold; background: #66677c;color: #fff; } td { padding: .5em .5em; border-bottom: solid 1px #ccc; } table,table tr th, table tr td { border:1px solid #0094ff; }/*设置边框*/ </style> </head> <body> <table> <tr> <th>Name</th> <th>Age</th> <th>Phone</th> </tr> <#list users as user> <tr> <td>${user.name}</td> <td>${user.age}</td> <td>${user.phone}</td> </tr> </#list> </table> </body> </html>
浏览器请求:
可以看到,在center.ftl中,我们使用了<#list users as user>
的写法,这个相当于jstl表达式中的c:forEach。而users集合我们在FreeMarkerCtrl已经初始化了。
关于如何在SpringBoot中整合freemarker就分享到这里了,希望以上内容可以对大家有一定的帮助,可以学到更多知识。如果觉得文章不错,可以把它分享出去让更多的人看到。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。