我应该如何在 Eclipse 中模板化我的网站
我是第一次使用 Eclipse,想知道应该采用哪种方式对其进行模板化?我对tiles和jsp了解一点,对数据库了解零。
站点:
- 静态页眉、导航、侧边栏和页脚
- 几个不同的内容 jsp 的
- 主要问题是 -->我有一个内容部分,只有一种布局,但有 100 个不同的 jsp...我应该如何解决这个问题?
谢谢
I'm using Eclipse for the first time, wondering which way to go about templating it? I know a little about tiles and jsp's, zero about databases.
the site:
- static header, nav, sidebar, and footer
- a few different content jsp's
- main question is --> I have one content section with one layout but 100's of varying jsp's...how should I go about this?
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不确定 Struts 和数据库与此有何关系,但基本上,
是您在 JSP 中可以获得的最佳内容。/WEB-INF/template.jsp
的基本启动示例和控制器 Servlet:
调用它经过
并提供
/ WEB-INF/foo.jsp
文件应该代表内容。例如/WEB-INF/foo.jsp
I'm not sure how Struts and databases are related to this, but basically,
<jsp:include>
is the best what you can get in JSP.Basic kickoff example of
/WEB-INF/template.jsp
And the controller Servlet:
Invoke it by
and provide a
/WEB-INF/foo.jsp
file which should represent the content. E.g./WEB-INF/foo.jsp