JSP 相当于 ASP.NET MVC 的部分视图?

发布于 2024-10-04 13:45:10 字数 104 浏览 2 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

悲喜皆因你 2024-10-11 13:45:10

没有。 JSP 并不是 ASP.NET MVC 的完全等价物。它更像是经典的 ASP。 ASP.NET MVC 的 Java 等效项是 Facelets 上的 JSF 2.0。

但是,您的要求听起来更像是您需要一个简单的包含页面。在 JSP 中,您可以使用 来实现此目的。但它在模板方面没有提供更多内容(Facelets 在这方面更胜一筹),在基于组件的 MVC 方面也没有提供任何内容(您可以使用 JSF)。

基本示例:

main.jsp

<!DOCTYPE html>
<html lang="en">
    <head>
         <title>Title</title>
    </head>
    <body>
         <h1>Parent page</h1>
         <jsp:include page="include.jsp" />
    </body>
</html>

include.jsp

<h2>Include page</h2>

生成的 HTML 结果:

<!DOCTYPE html>
<html lang="en">
    <head>
         <title>Title</title>
    </head>
    <body>
         <h1>Parent page</h1>
         <h2>Include page</h2>
    </body>
</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

<!DOCTYPE html>
<html lang="en">
    <head>
         <title>Title</title>
    </head>
    <body>
         <h1>Parent page</h1>
         <jsp:include page="include.jsp" />
    </body>
</html>

include.jsp

<h2>Include page</h2>

Generated HTML result:

<!DOCTYPE html>
<html lang="en">
    <head>
         <title>Title</title>
    </head>
    <body>
         <h1>Parent page</h1>
         <h2>Include page</h2>
    </body>
</html>

See also:

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文