velocity第一个应用例子
执行的步骤
/**
* 1.Initialize Velocity. This applies to bothusage patterns for Velocity,
* the Singleton as well as the 'separateruntime instance' (see more on
* this below), and you only do this once.
* 2. Create a Context object (more on whatthat is later).
* 3.Add your data objects to the Context.
* 4. Choose a template.
* 5. 'Merge' the template and your data toproduce the
ouput.
*
* @throws
Exception
*/
Velocity.init("src/velocity.properties");使用的是相对路径,项目下的src下的
//2. Create a Context object
VelocityContext context = newVelocityContext();
//3.Add your data objects to this context
context.put("hello","HeloWorld");
context.put("who", "旗哥");
//4.Choose a template
Template template =Velocity.getTemplate("mytemplate.vm");
StringWriter sw = new StringWriter();
//5.Merge the template and you data toproduce the output
template.merge(context, sw);
sw.flush();
System.out.println(sw.toString());以上就是Velocity第一个应用例子的内容,更多相关内容请关注PHP中文网(www.php.cn)!
安全锁锁芯类网站模板(响应式)是一个响应式优雅大气的集团企业网站模板,自带内核安装即用,响应式模板,图片文本均已可视化,简单后台易上手。支持多种内容模型,可按需添加。模板特点: 1、安装即用,自带人人站CMS内核及企业站展示功能(产品,新闻,案例展示等),并可根据需要增加表单 搜索等功能(自带模板) 2、支持响应式 3、前端banner轮播图文本均已进行可视化配置 4、伪静态页面生成 5、支持内容
0
每个人都需要一台速度更快、更稳定的 PC。随着时间的推移,垃圾文件、旧注册表数据和不必要的后台进程会占用资源并降低性能。幸运的是,许多工具可以让 Windows 保持平稳运行。
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号