spring boot 使用velocity模板

(不要使用这种模板了,spring boot最新版已经不支持了。使用FreeMarker吧:http://blog.csdn.net/clementad/article/details/51942629)

简单几步,在spring boot中使用velocity模板生成文本:


1、引入依赖
		  
			org.springframework.boot
			spring-boot-starter-velocity
		

2、resources中创建templates目录
spring boot 使用velocity模板_第1张图片

3、创建.vm模板文件welcome.vm:


亲爱的${toUserName},你好!

    ${message}

祝:开心!
${fromUserName}
${time}



4、使用模板,测试用例:
	@Autowired
	VelocityEngine velocityEngine;
	
	@Test
	public void velocityTest(){
		Map model = new HashMap();
		model.put("time", XDateUtils.nowToString());
		model.put("message", "这是测试的内容。。。");
		model.put("toUserName", "张三");
		model.put("fromUserName", "老许");
		System.out.println(VelocityEngineUtils.mergeTemplateIntoString(velocityEngine, "welcome.vm", "UTF-8", model));
	}

5、测试结果:

spring boot 使用velocity模板_第2张图片


附:

velocity官网: http://velocity.apache.org/

velocity语法参考:http://velocity.apache.org/engine/devel/vtl-reference.html

源代码参考:https://github.com/xujijun/my-spring-boot


你可能感兴趣的:(Spring,Boot)