从jsp调用bean方法

从jsp调用bean方法,第1张

从jsp调用bean方法

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

查看(

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>

型号

Bean.java

@ManagedBean@RequestScopedpublic class Bean {    private String result;    public void hey() {        result = "Hello World!";    }    public String getResult() {        return result;    }}

而已。



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5442168.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-11
下一篇 2022-12-11

发表评论

登录后才能评论

评论列表(0条)

保存