使用 fmpp 将一个模板生成多个输出文件

发布于 2024-08-15 07:28:09 字数 100 浏览 5 评论 0原文

我想设置一个 Maven 插件,它将采用一些 freemarker 模板,并将每个模板扩展几次,每次使用一组不同的输入值。有没有更好的方法可以使用 fmpp 来一遍又一遍地强力处理它们?

I want to set up an maven plugin that will take a few freemarker templates, and expand each one several times, each time with a different set of input values. Is there any better way to do this with fmpp that brute force processing them over and over?

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

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

发布评论

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

评论(2

巷子口的你 2024-08-22 07:28:09

当你说设置一个 Maven 插件时,你的意思是自己编写吗?

如果您只想将 fmpp 与 Maven 一起使用并避免编写插件,您可以这样做:

使用 maven-antrun-plugin 并使用 fmpp Ant 任务 (fmpp.sourceforge.net/ant.html) 通过一小段 Ant 脚本处理您的文件。结合 ant-contrib 任务 (ant-contrib.sourceforge.net/tasks/tasks/index.html),您应该能够非常轻松地循环一组文件。

When you say set up a maven plugin, do you mean write your own?

If you want to just use fmpp with Maven and avoid writing a plugin you could do this:

Use the maven-antrun-plugin and process your files with a small snippet of Ant script using the fmpp Ant task (fmpp.sourceforge.net/ant.html). Combined with the ant-contrib task (ant-contrib.sourceforge.net/tasks/tasks/index.html) you should be able to loop quite easily over a set of files.

差↓一点笑了 2024-08-22 07:28:09

无论您是否通过 Maven 插件使用 FMPP,pp 哈希都可以满足您的需求。看看 http://fmpp.sourceforge.net/pphash.html#key_changeOutputFile 。您可以在循环中调用该函数,为每次迭代生成不同的输出文件。

Whether you use FMPP from a Maven plugin or not, the pp hash provides exactly what you need. Have a look at http://fmpp.sourceforge.net/pphash.html#key_changeOutputFile. You can call that function in a loop, producing a different output file for each iteration.

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