vm(velocity)模板变量定义及使用

时间:2024-05-21 14:59:05

定义变量写到VM模板中
在VelocityUtils.java 文件中写
该文件中定义方法:
public static VelocityContext prepareContext(GenTable genTable)
定义变量
VelocityContext velocityContext = new VelocityContext();[到时候返回这个变量]
在该文件中设置变量
velocityContext.put(“tplCategory”, genTable.getTplCategory());
velocityContext.put(“tableName”, genTable.getTableName());

在setTreeVelocityContext这个方法[该方法为设置树在模板中的变量]
例:
context.put(“treeCode”, treeCode);
context.put(“treeParentCode”, treeParentCode);
context.put(“treeName”, treeName);
context.put(“expandColumn”, getExpandColumn(genTable));
context.put(“orgLevel”,StringUtils.toCamelCase(“Org_Level”));
if (paramsObj.containsKey(GenConstants.TREE_PARENT_CODE))

在模板中变量名即为context中Key
例:orgLevel
在VM中写法
#set(TreeLevel=TreeLevel=orgLevel.substring(0,1).toUpperCase() + ${orgLevel.substring(1)})

通过context获取外面context定义的值 例:orgLevel[即获取外面定义的变量]
#set:设置值
KaTeX parse error: Expected 'EOF', got '#' at position 44: …值为orglevel截取的值 #̲set(TreeLevel=$orgLevel.substring(0,1).toUpperCase() + orgLevel.substring(1))使:{orgLevel.substring(1)}) 使用:{变量名}
例:
System.out.println("${TreeLevel}");
使用方法
// 初始化vm
VelocityInitializer.initVelocity();
// 设置vm中变量
VelocityContext context = VelocityUtils.prepareContext(table);
// 获取模板列表
List templates = VelocityUtils.getTemplateList(table.getTplCategory());
for (String template : templates)
{
// 渲染模板
StringWriter sw = new StringWriter();
Template tpl = Velocity.getTemplate(template, Constants.UTF8);
// 将变量渲染到vm中
tpl.merge(context, sw);
vm(velocity)模板变量定义及使用