从jsp调用bean方法

发布于 2024-11-03 05:07:01 字数 66 浏览 1 评论 0原文

我想知道如何从jsp调用bean方法。 类似的东西。单击按钮 [Hey] 我想打印“Hello world”。 谢谢。

I would like to know how to Invoke bean method from jsp.
something like. On click of button [Hey] i would like to print "Hello world".
Thank you.

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

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

发布评论

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

评论(2

时间海 2024-11-10 05:07:01

继续使用 JSF。您的需求如下所示:

View (test.xhtml)

<!DOCTYPE html>
<html lang="en"
    xmlns="http://www.w3.org/1999/xhtml"
    xmlns:f="http://java.sun.com/jsf/core"
    xmlns:h="http://java.sun.com/jsf/html"
    xmlns:ui="http://java.sun.com/jsf/facelets"
>
    <h:head>
        <title>JSF Hello World</title>
    </h:head>
    <h:body>
        <h:form>
            <h:commandButton value="Hey" action="#{bean.hey}">
                <f:ajax render=":result" />
            </h:commandButton>
        </h:form>
        <h:outputText id="result" value="#{bean.result}" />
    </h:body>
</html>

Model (Bean.java)

@ManagedBean
@RequestScoped
public class Bean {

    private String result;

    public void hey() {
        result = "Hello World!";
    }

    public String getResult() {
        return result;
    }

}

就是这样。

Go ahead with JSF. Here's how your requirement would look like:

View (test.xhtml)

<!DOCTYPE html>
<html lang="en"
    xmlns="http://www.w3.org/1999/xhtml"
    xmlns:f="http://java.sun.com/jsf/core"
    xmlns:h="http://java.sun.com/jsf/html"
    xmlns:ui="http://java.sun.com/jsf/facelets"
>
    <h:head>
        <title>JSF Hello World</title>
    </h:head>
    <h:body>
        <h:form>
            <h:commandButton value="Hey" action="#{bean.hey}">
                <f:ajax render=":result" />
            </h:commandButton>
        </h:form>
        <h:outputText id="result" value="#{bean.result}" />
    </h:body>
</html>

Model (Bean.java)

@ManagedBean
@RequestScoped
public class Bean {

    private String result;

    public void hey() {
        result = "Hello World!";
    }

    public String getResult() {
        return result;
    }

}

That's it.

余罪 2024-11-10 05:07:01

有多种可能的方法可以做到这一点。

  • JSF EL 很好地做到了这一点。
  • 您可以使用 DWR 来调用 bean 的方法,只需进行简单的 javascript 调用,它将创建 ajax 请求在 server 上调用 bean 的方法。

There are multiple possible ways to do this.

  • JSF EL does this nicely.
  • You can use DWR to invoke bean's method from just making simple javascript call, it will create ajax request to invoke bean's method at server .
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文