JSP 相当于 ASP.NET MVC 的部分视图?
ASP.NET MVC 的部分视图在 JSP 中的等价物是什么?
我想将一些复杂的视图逻辑从页面中分离出来,放入一个仅处理该逻辑的单独页面中。如何将该页面呈现为我的页面的一部分?
What is the JSP equivalent of ASP.NET MVC's partial views?
I'd like to separate some complicated view logic out of a page into a separate page that only handles that logic. How can I render that page as part of my page?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
没有。 JSP 并不是 ASP.NET MVC 的完全等价物。它更像是经典的 ASP。 ASP.NET MVC 的 Java 等效项是 Facelets 上的 JSF 2.0。
但是,您的要求听起来更像是您需要一个简单的包含页面。在 JSP 中,您可以使用
来实现此目的。但它在模板方面没有提供更多内容(Facelets 在这方面更胜一筹),在基于组件的 MVC 方面也没有提供任何内容(您可以使用 JSF)。基本示例:
main.jsp
include.jsp
生成的 HTML 结果:
另请参阅:
There isn't. JSP is not a fullworthy equivalent of ASP.NET MVC. It's more an equivalent to classic ASP. The Java equivalent of ASP.NET MVC is JSF 2.0 on Facelets.
However, your requirement sounds more like as if you need a simple include page. In JSP you can use the
<jsp:include>
for this. But it offers nothing more with regard to templating (Facelets is superior in this) and also nothing with regard to component based MVC (there you have JSF for).Basic example:
main.jsp
include.jsp
Generated HTML result:
See also: