gpt4 book ai didi

java - 从jsp调用bean方法

转载 作者:行者123 更新时间:2023-12-02 08:19:16 25 4
gpt4 key购买 nike

我想知道如何从jsp调用bean方法。就像是。单击按钮 [Hey] 我想打印“Hello world”。谢谢。

最佳答案

继续 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
@RequestScoped
public class Bean {

private String result;

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

public String getResult() {
return result;
}

}

就是这样。

关于java - 从jsp调用bean方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5776731/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com