<h:setPropertyActionListener>
標(biāo)簽向一個將bean
屬性設(shè)置為給定值的組件添加了一個actionlistener
。
以下代碼顯示如何使用<f:setPropertyActionListener>
標(biāo)簽。
<h:commandButton id="submit" action="result" value="Show Message">
<f:setPropertyActionListener target="#{userData.data}"
value="JSF 2.0 User" />
</h:commandButton>
以下是文件:UserBean.java 中的代碼。
package com.yiibai.common;
import javax.faces.bean.ManagedBean;
import javax.faces.bean.SessionScoped;
@ManagedBean(name="user")
@SessionScoped
public class UserBean{
public String username;
public String outcome(){
return "result";
}
public String getUsername() {
return username;
}
public void setUsername(String username) {
this.username = username;
}
}
以下是文件:index.xhtml 中的代碼 -
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core"
>
<h:body>
<h:form id="form">
<h:commandButton action="#{user.outcome}" value="Click Me">
<f:setPropertyActionListener target="#{user.username}" value="yiibai" />
</h:commandButton>
</h:form>
</h:body>
</html>
以下是文件:result.xhtml 中的代碼 -
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://java.sun.com/jsf/html"
>
<h:body>
<h1>JSF 2 setPropertyActionListener example</h1>
#{user.username}
</h:body>
</html>
打開 NetBeans 創(chuàng)建一個名稱為: setPropertyActionListener 的Web工程,并使用上面文件代碼。運行項目,打開瀏覽器訪問以下網(wǎng)址:
http://localhost:8084/setPropertyActionListener
如果沒有錯誤,應(yīng)該會看到以下結(jié)果 -
點擊“Click Me”按鈕,結(jié)果如下 -