XML 的速度模板

发布于 2024-10-22 17:01:04 字数 41 浏览 0 评论 0原文

是否需要使用Velocity Template来创建XML模板???

Is it necessary to use Velocity Template to create XML Template???

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

一江春梦 2024-10-29 17:01:04

不。

您可以使用 Velocity 模板化 XML,但也可以使用其他方法,例如 XSLT

No.

You can template XML using Velocity but there are other methods that can be used such as XSLT

や莫失莫忘 2024-10-29 17:01:04

您可以尝试 quick-templates 来获取 XML/JSON 模板功能

,提供比 apache Velocity 更多的功能

    IEngine templateEngine=EngineFactory.getInstance().getEngine(EngineType.TEMPLATES);

    templateEngine.initialize("/com/tester/template-rules-config.xml");

    long startTime=System.currentTimeMillis();

    EngineResponse response=templateEngine.execute(context);

快速模板

you can try quick-templates to get XML/JSON templating capability

offers more capabilities than apache velocity

    IEngine templateEngine=EngineFactory.getInstance().getEngine(EngineType.TEMPLATES);

    templateEngine.initialize("/com/tester/template-rules-config.xml");

    long startTime=System.currentTimeMillis();

    EngineResponse response=templateEngine.execute(context);

Quick-Templates

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文