SpringBoot利用FreeMarker渲染指定模板


	org.springframework.boot
	spring-boot-starter-freemarker

模板位置

注:springboot中freemarker默认读取位置

核心代码:


		Template t = configuration.getTemplate("activeUserTemplate.ftl", "UTF-8");
		Map map = new HashMap<>();
		map.put("loginName","张三");
		map.put("activeUserUrl","https://www.jianshu.com/p/4e8c6cb1ddad");
		map.put("dateTime","2019-04-12");


		String string = FreeMarkerTemplateUtils.processTemplateIntoString(t, map);
		File file = new File("D:\\welocme.html");
		FileUtils.writeStringToFile(file,string);

结果:

                                                                        微信公众号

                                               SpringBoot利用FreeMarker渲染指定模板_第1张图片

                                                                             JAVA程序猿成长之路

                          分享资源,记录程序猿成长点滴。专注于Java,Spring,SpringBoot,SpringCloud,分布式,微服务。 

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