如何在jsp页面中生成事件?

发布于 2024-10-11 23:25:15 字数 780 浏览 1 评论 0 原文

想要在 是可能的吗?如何检查页面是否重新加载?在 有方法名称 isPostBack() 检查页面请求或重新加载的天气

Want to generate page events(pageload()) in is that possible? How do I check weather a page is reloaded? In there is method name isPostBack() to check weather the page is request or reload is there anything in ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

二智少女猫性小仙女 2024-10-18 23:25:15

您需要认识到,JSP 只是一种视图技术,就像经典 ASP 一样。 JSP 和经典 ASP 不是像 ASP.NET-MVC 那样的 MVC 框架,ASP.NET-MVC 提供 Page#IsPostback() 方法。 ASP.NET-MVC 的真正 Java 对应部分是 JSF,它提供了 FacesContext#isPostback() 方法。

在普通的普通 JSP 中,它就像您自己实现该方法一样简单:

public static boolean isPostback(HttpServletRequest request) {
    return request.getMethod().equals("POST");
}

MVC 框架的要点是它使您免于所有类似的样板代码。如果您想要 ASP.NET-MVC 的 Java 对应版本,请查看 JSF(基于组件)或 Spring MVC(基于请求)。 Struts 和 Hibernate 已经过时了。除了 Hibernate,请查看 JPA。事实上,看一下整个 Java EE 6 API。

另请参阅:

You need to realize that JSP is just a view technology like as Classic ASP. JSP and Classic ASP are not a MVC framework like ASP.NET-MVC which offers the Page#IsPostback() method. The real Java counterpart of ASP.NET-MVC is JSF which offers the FacesContext#isPostback() method.

In plain vanilla JSP it's just as simple as implementing the method yourself:

public static boolean isPostback(HttpServletRequest request) {
    return request.getMethod().equals("POST");
}

The point of a MVC framework is that it saves you from all the boilerplate code like that. If you want a Java counterpart of ASP.NET-MVC, then have a look at JSF (component based) or Spring MVC (request based). Struts and Hibernate are aged. Instead of Hibernate, have a look at JPA. Infact, have a look at the entire Java EE 6 API.

See also:

若言繁花未落 2024-10-18 23:25:15

要检查页面是否重新加载,您可以在 HTML 代码的 body 标记中使用“onBodyload”和“onBodyUnload”事件。

对于 struts 和 hibernate,请查看可用的 onlojne 文档。很好的入门材料。

To check for a page reload you could use 'onBodyload' and 'onBodyUnload' events in body tag of your HTML code.

For struts and hibernate check out onlojne documentation available. Good material to start with.

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