如何编写tagx(没有java的JSPX标签库)
我找不到关于如何在 JSPX 中不使用 Java 编写现代标签库的好文档?
Spring Roo 提供了很多示例(并且似乎是唯一广泛使用 tagx 的项目)。
我可能会提出另一个问题,但每次我不想在 JSPX (DRY) 中重复自己时,我觉得必须牺牲宝贵的时间并去创建一个标签库,因为没有内联宏。
我觉得我一定在 JSP/X 中遗漏了一些东西。
I can't find good documentation on how to write modern tag libraries without Java in JSPX?
Spring Roo provides lots of examples (and seems to be only project that uses tagx extensively).
I may make this another question but every time I want to not repeat myself in JSPX (DRY) I feel like have to sacrifice valuable time and go create a tag library because there are no inline macros.
I feel like I must be missing something in JSP/X.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我能找到的关于 JSP 标签库的最好资源来自马口:
http://download.oracle.com/javaee/5/tutorial/doc /bnalj.html
您必须在心里将 JSP 代码转换为 JSPX。
The best resource I could find on JSP Tag libraries is from the horses mouth:
http://download.oracle.com/javaee/5/tutorial/doc/bnalj.html
You have to mentally convert the JSP code to JSPX.
我现在正在尝试同样的技术。
我发现本教程使用一个可以理解的示例解释了这个问题: Spring MVC:从 JSP 和 Tiles 到 Thymeleaf
希望这会有所帮助:)
I'm trying the same technology now.
I've found this tutorial which explains the question using an understandable example: Spring MVC: from JSP and Tiles to Thymeleaf
Hope this helps :)
我偶然发现你的问题,寻找不同的东西。
我在 http:// 上写了一篇关于它的文章Stories.stefanocazzola.it/2012/07/placing-your-custom-tags-inside-jar.html
Stefano
I stumbled on your question searching for something different.
I wrote a post about it at http://stories.stefanocazzola.it/2012/07/placing-your-custom-tags-inside-jar.html
Stefano