页面部分 JSP/JSTL
我习惯用 PHP 工作。在那里,我将创建一个页面类,其中包含用于编写菜单页眉和页脚的方法,并从我的脚本中调用这些方法。这种方式能够轻松更改主菜单的内容,只需编辑页面类代码。
现在我正在尝试 JSP 和 JSTL,但除了 include 之外我找不到任何解决此问题的方法。有更好的方法吗?
I'm used to work in PHP. There I would make a Page Class with methods for writing menus headers and footers and call those methods from my script. This way was able to easily change the content of the main menu, editing just the Page Class code.
Now I'm trying JSP and JSTL and I can't find any solution for this problem other than include. Is there a better way to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看来 jsp:include 是解决这个问题的最佳方法。
It seems that jsp:include is the best way to solve this.