如何设置 TLDDoc 来为 JSP TagLib 创建文档?
我工作的一家公司目前在多个项目中拥有多个标签库。我们使用maven和hudson。我的任务是找到一些可以用来为我们的标签库自动生成文档的东西。我找到了 TLDDoc 但我找不到任何解释如何设置它的内容。请注意,我不是 Java 开发人员,而是使用 JSP 和其他技术的 UI 开发人员。任何帮助将不胜感激。
A company I work for currently has several taglibs across multiple projects. We use maven and hudson. I've been tasked to find something that we can use to auto-generate documentation for our taglibs. I've found TLDDoc but I haven't been able to find anything explaining how to set this up. Please note, I'm not a Java Developer, I'm a UI Developer that works in JSP among other technologies. Any help would be appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果你想执行 TLDDoc 作为 Maven 插件,你可以这样做,例如:
If you want to execute TLDDoc as maven plugin, you can do it e.g. like this:
我也有过类似的需求。我所做的是在 maven 文件中使用 Ant 脚本,它会找到我需要的项目下的所有 TLD 定义文件,并循环遍历每个文件并执行某些操作。
我需要 2 个输出。 HTML 和 DITA(技术文档格式,DOCBOOK 的后继者)。
使用 Maven,您需要学习一点 ANT 脚本,并知道如何调用 java 类 (TLDDOC) 或 XSLT 引擎。
这真的很酷,而且非常灵活。
I have had some similar requirement. What I did was to use an Ant script within the maven file, it would find all the TLD definition files under the projects I needed, and looped over each file and do something.
I needed to 2 outputs. HTML and DITA (technical documentation format, successor of DOCBOOK).
With maven you need to learn a little bit of ANT script, and know how to call java classes (TLDDOC) or the XSLT engine.
It was really cool, and quite flexible.