velocity.VelocityUtil
package velocity; import org.apache.velocity.Template; import org.apache.velocity.app.Velocity; import org.apache.velocity.app.VelocityEngine; import org.apache.velocity.context.Context; import org.apache.velocity.tools.ToolManager; import java.io.StringWriter; /** * Created by Administrator on 2015/3/11. */ public class VelocityUtil { public static String exportFixedVelocityWithToolbox() { // 创建引擎 VelocityEngine ve = new VelocityEngine(); // 设置模板加载路径,这里设置的是class下 ve.setProperty(Velocity.RESOURCE_LOADER, "class"); ve.setProperty("class.resource.loader.class", "org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader"); // 进行初始化操作 ve.init(); // 加载模板,设定模板编码 Template t = ve.getTemplate("template/velocity_template.vm", "UTF-8"); // 设置初始化数据 // 加载toolbox ToolManager manager = new ToolManager(); manager.configure("/template/configuration.xml"); Context context = manager.createContext(); context.put("name", "张三"); String[] hobbyArray={"吃饭","喝水","洗澡"}; context.put("hobby", "爱好"); context.put("hobbyArray", hobbyArray); // 设置输出 StringWriter writer = new StringWriter(); // 将环境数据转化输出 t.merge(context, writer); return writer.toString(); } public static void main(String[] args) { System.out.println(exportFixedVelocityWithToolbox());; } }
template/configuration.xml
<toolbox> <tool> <key>date</key> <scope>application</scope> <class>org.apache.velocity.tools.generic.DateTool</class> </tool> </toolbox>
template/velocity_template.vm
$name $hobby: #foreach($hobby in $hobbyArray) ${hobby} #end year : $date.getYear() month: $date.getMonth() month: $date.getDay() current time : $date.get('yyyyMMdd:HHmmss')
相关推荐
4. **可扩展性**:Velocity可以通过Velocity Tools等工具集进行扩展,如Velocity Toolbox提供了许多实用的工具和辅助类。 **二、Velocity在Struts2中的整合** Struts2是一个流行的MVC框架,它默认支持多种视图技术...
struts.action.extension ... The location of the Velocity toolbox velocity工具盒的位置 struts.xslt.nocache Whether or not XSLT templates should not be cached 是否XSLT模版应该被缓存
在velocity.properties文件中,可以指定toolbox.xml文件,该文件用于定义工具箱,工具箱中可以包含自定义的Velocity工具(Macro)和函数(Function)。这些工具和函数可以在模板中直接调用,简化模板编写。 通过...
10. **扩展性**:Velocity 允许用户自定义工具类(Toolbox),将自定义的方法或工具暴露给模板使用,增强了其灵活性和可扩展性。 总的来说,Velocity 1.5 是一个强大且灵活的模板引擎,它简化了Web应用的开发流程,...
VMT是一款基于Matlab的软件,用于处理和可视化沿河流或其他水体中的样带收集的ADCP数据。VMT 允许对一系列 ADCP 数据集进行快速处理、可视化和分析,并包括将 ADCP 数据导出到与 ArcGIS、Tecplot 和 Google 地球兼容...
可以在`velocity.properties`中配置`toolbox.config`,并使用`#tool`指令在模板中引用这些工具。 8. **源码阅读** 深入理解Velocity的工作原理,可以查看其源码,了解如何解析模板、执行指令以及如何处理上下文...
SpringBoot 2.x 版本对 Velocity 模板不支持的...spring.velocity.toolbox-config-location=/WEB-INF/toolbox.xml ``` 最后,我们需要在 spring.xml 文件中添加以下视图解析配置: ```xml <!-- 设置视图解析工具 --> ...
5. **工具箱(Toolbox)**:Velocity允许使用工具箱(Tools)将各种实用工具类暴露给模板,如日期格式化、URL编码等。通过`VelocityContext.addToolbox()` 添加工具箱,然后在模板中使用。 6. **模板解析与合并**:...
Velocity-based dynamic model and adaptive controller for differential steered mobile robot
10. **工具箱(Toolbox)**:Velocity Tool API允许开发者将自定义的工具类注册到上下文中,这些工具类可以提供额外的功能,如日期处理、数学计算等。 通过以上这些特性,Velocity提供了一个强大且灵活的模板系统,...
该工具箱提供了用于光场视频 (LFV) 5-D 深度速度滤波的 MATLAB 函数。有关 5-D 深度-速度滤波概念和 5-D FIR 深度速度滤波器的更多详细信息,请参阅 [1] [1] CUS Edussooriya、DG Dansereau、LT Bruton 和 P....
每个粒子有两个关键属性:位置(Position)和速度(Velocity)。粒子的位置代表一个潜在的解决方案,速度决定了粒子如何在解空间中移动。算法迭代过程中,每个粒子根据其当前位置和最佳历史位置,以及全局最佳位置来...
这个文件通常在Velocity Tools项目中使用,它是一个配置文件,用于定义工具箱中的各种工具实例。在Vilocity中,工具是指可以方便地在模板中使用的Java对象。例如,你可能会在`toolbox.xml`中配置一个日期工具,以便...
实物敲铃实验的代码为MATLAB代码,使用了MATLAB ROS ToolBox. Run catkin_make Lab 1 正逆运动学 roslaunch probot_gazebo probot_anno_position_control_bringup.launch roslaunch probot_gazebo invert.launch ...
在实际应用中,由于Velocity需要自定义toolbox类和编写通用模板代码,而Freemarker则相对更易于使用。 Freemarker的工作原理可概括为:将页面样式设计放在FreeMarker模板文件中,然后将动态数据以键值对的形式放入...
This is a finite volume (toy) toolbox for chemical/petroleum engineers. Right now, it can solve a transient convection-diffusion equation with variable velocity field/diffusion coefficients.
在MATLAB中实现PSO,可以使用内置的`Global Optimization Toolbox`,或者自定义代码实现。自定义代码允许更灵活地调整参数和实现各种改进策略。文件列表中提到的可能是包含不同改进方法的MATLAB脚本或函数,如混沌...
该属性指定了Velocity框架的`toolbox`的位置。 #### struts.url.http.port 指定了Web应用所在的监听端口。该属性通常没有实际用途,只有当Struts 2需要生成URL时(如Url标签),才会提供Web应用的默认端口信息。 #...