有没有办法重用我的自定义 JSP 标记中的逻辑?
所以我已经得到了我一直在研究的自定义 JSP 标记。我现在需要执行
在我的标签中执行的操作以及自定义逻辑。
有没有办法重新使用
逻辑?继承看起来不像是一个选项,因为
将在我不这样做的 pageContext
上设置/打印自己的 setAttributes
不想要。覆盖该方法将意味着再次对其进行编码。
有什么想法吗?
So I've got this custom JSP tag I've been working on. I now need to do pretty much what <c:url>
will do in my tag plus my custom logic.
Is there a way to just re-use <c:url>
logic? Inheritance doesn't look like an option since <c:url>
will set/print its own setAttributes
on the pageContext
that I don't want. And overriding that method will means code it again.
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Displaytag 是一个很好的解决方案,正如 Dave 指出的那样,它有很多内置功能,使它变得很多更容易,或者您可以手动创建页面链接(这就是我要做的,它并不复杂,并且周围有很多示例。)
Displaytag is a good solution to this as Dave pointed out, it has a lot of built in functionality making it a lot more easier, or else you could manually create page links(this is what I would do, its not complicated and there are plenty of samples around.)