当前位置: 首页 > 文档资料 > JSF 入门教程 >

actionListener

优质
小牛编辑
132浏览
2023-12-01

当用户与组件交互时,例如h:commandButton或h:link,JSF会触发可以通过两种方式处理的动作事件。

S.No技术与描述
1

Method Binding

在UI Component的actionListener属性中传递托管bean方法的名称。

2

ActionListener

实现ActionListener接口并将实现类名称传递给UI Component的actionListener属性。

方法绑定

定义方法

public void updateData(ActionEvent e) {
   data = "Hello World";
}

使用上述方法

<h:commandButton id = "submitButton" 
   value = "Submit" action = "#{userData.showResult}"
   actionListener = "#{userData.updateData}" />
</h:commandButton>

ActionListener (ActionListener)

实现ActionListener

public class UserActionListener implements ActionListener {
   @Override
   public void processAction(ActionEvent arg0)
   throws AbortProcessingException {
      //access userData bean directly
      UserData userData = (UserData) FacesContext.getCurrentInstance().
      getExternalContext().getSessionMap().get("userData"); 
      userData.setData("Hello World");
   }
}

使用监听器方法

<h:commandButton id = "submitButton1" 
   value = "Submit" action = "#{userData.showResult}" >
   <f:actionListener type = "cn.xnip.test.UserActionListener" />
</h:commandButton>

例子 Example Application

让我们创建一个测试JSF应用程序来测试JSF中的actionListener。

描述
1package cn.xnip.test下创建一个名为helloworld的项目,如JSF - First Application一章中所述。
2修改UserData.java文件,如下所述。
3在包cn.xnip.test下创建UserActionListener.java文件。 按照以下说明修改它。
4修改home.xhtml ,如下所述。 保持其余文件不变。
5修改result.xhtml ,如下所述。 保持其余文件不变。
6编译并运行应用程序以确保业务逻辑按照要求运行。
7最后,以war文件的形式构建应用程序并将其部署在Apache Tomcat Webserver中。
8使用适当的URL启动Web应用程序,如下面的最后一步所述。

UserData.java

package cn.xnip.test;
import java.io.Serializable;
import java.util.LinkedHashMap;
import java.util.Map;
import javax.faces.bean.ManagedBean;
import javax.faces.bean.SessionScoped;
import javax.faces.event.ValueChangeEvent;
@ManagedBean(name = "userData", eager = true)
@SessionScoped
public class UserData implements Serializable {
   private static final long serialVersionUID = 1L;
   private static Map<String,String> countryMap;
   private String data = "sample data";
   public String showResult() {
      return "result";
   }
   public void updateData(ActionEvent e) {
      data="Hello World";
   }
   public String getData() {
      return data;
   }
   public void setData(String data) {
      this.data = data;
   }
}

UserActionListener.java

package cn.xnip.test;
import javax.faces.context.FacesContext;
import javax.faces.event.AbortProcessingException;
import javax.faces.event.ActionEvent;
import javax.faces.event.ActionListener;
public class UserActionListener implements ActionListener {
   @Override
   public void processAction(ActionEvent arg0) 
   throws AbortProcessingException {
      //access userData bean directly
      UserData userData = (UserData) FacesContext.getCurrentInstance().
      getExternalContext().getSessionMap().get("userData"); 
      userData.setData("Hello World");
   }
}

home.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:head>
      <title>JSF tutorial</title>		   
   </h:head>
   <h:body> 
      <h2>actionListener Examples</h2>
      <h:form>
         <h2>Method Binding</h2>
         <hr/>
         <h:commandButton id = "submitButton" 
            value = "Submit" action = "#{userData.showResult}"
            actionListener = "#{userData.updateData}" />
         </h:commandButton>
         <h2>ActionListener interface</h2>
         <hr/>
         <h:commandButton id = "submitButton1" 
            value = "Submit" action = "#{userData.showResult}" >
            <f:actionListener 
               type = "cn.xnip.test.UserActionListener" />
         </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:f = "http://java.sun.com/jsf/core"    
   xmlns:h = "http://java.sun.com/jsf/html">
   <h:head>
      <title>JSF Tutorial!</title>   
   </h:head>
   <h:body>
      <h2>Result</h2>
      <hr />
      #{userData.data}
   </h:body>
</html>  

一旦准备好完成所有更改,让我们像在JSF - First Application章节中那样编译和运行应用程序。 如果您的应用程序一切正常,这将产生以下结果。

JSF actionListener结果

单击任何提交按钮。 您将看到以下结果。

JSF actionListener result1