如何将 jsp 文件包含在另一个文件中?
如果我有 header.jsp
并且我想将其包含在我的 index.jsp
中,我知道如何导入类和库...我一直在研究@page 注释,但无法找到参数列表。
这是完全错误的做法吗?如果我要设置页眉和页脚文件,我应该使用完全不同的方法吗?
I know how to import classes and libraries, if I have header.jsp
and I want to include it within my index.jsp
... I've been looking into the @page annotation but am having trouble finding a list of parameters.
Is this the wrong approach altogether? If I'm going to be setting up header and footer files should I use a completely different method?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在另一个 静态或动态。每个都有自己的语法和使用建议。就你而言,我相信静态包含是所需要的。
You can include a jsp page in another either statically or dynamically. Each has its own syntax and usage recommendation. In your case, I believe static include is what is needed.