我正在尝试使用XmlTool解析XML文件,以便能够使用Velocity模板中的数据。
但是,关于它的文档都很差,并没有真正提供我需要的信息。
文档位于:https://velocity.apache.org/tools/devel/apidocs/org/apache/velocity/tools/generic/XmlTool.html
我试过了:
VelocityContext context = new VelocityContext(page);
EasyFactoryConfiguration config = new EasyFactoryConfiguration();
config.toolbox("application")
.tool("org.apache.velocity.tools.generic.XmlTool")
.property("safeMode", false)
.property("key", "foo")
.property("file", xmlFilePath);
ToolboxFactory factory = config.createFactory();
template = Velocity.getTemplate(page.get("template-file"));
template.merge(context, write);
return write.toString();
但这不起作用。 如何让数据真正实现我的模板?我觉得我错过了很多步骤,但却无法找到我需要的信息!
答案 0 :(得分:1)
好吧,我的同事是一个聪明的人,本来应该这样做的。这就好了。
XmlTool tool = new XmlTool();
tool = tool.read(dataFile.getAbsolutePath());
context.put("foo", tool);