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

f:param

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

f:param标签提供将参数传递给组件或传递请求参数的选项。

JSF标签 (JSF Tag)

将参数传递给UI组件

<h:outputFormat value = "Hello {0}!.">     
   <f:param value = "World" /> 
</h:outputFormat>

传递请求参数

<h:commandButton id = "submit"  
   value = "Show Message" action = "#{userData.showResult}"> 
   <f:param name = "username" value = "JSF 2.0 User" /> 
</h:commandButton> 

标签属性 (Tag Attributes)

S.No属性和描述
1

id

组件的标识符

2

binding

引用可以在辅助bean中使用的组件

3

name

此参数组件的可选名称

4

value

存储在此组件中的值

例子 Example Application

让我们创建一个测试JSF应用程序来测试上面的标记。

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

UserData.java

package cn.xnip.test;
import java.io.Serializable;
import javax.faces.bean.ManagedBean;
import javax.faces.bean.SessionScoped;
@ManagedBean(name = "userData", eager = true)
@SessionScoped
public class UserData implements Serializable {
   private static final long serialVersionUID = 1L;
   public String data = "1";
   public String getData() {
      return data;
   }
   public void setData(String data) {
      this.data = data;
   }
   public String showResult() {
      FacesContext fc = FacesContext.getCurrentInstance();
      Map<String,String> params = 
         fc.getExternalContext().getRequestParameterMap();
      data =  params.get("username"); 
      return "result";
   }
}

home.xhtml

<!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">
   <head>
      <title>JSF Tutorial!</title>
   </head>
   <body>
      <h2>f:param example</h2>
      <hr />
      <h:form>
         <h:outputFormat value = "Hello {0}!.">
            <f:param value = "World" />
         </h:outputFormat>
         <br/>
         <h:commandButton id = "submit" 
            value = "Show Message" action = "#{userData.showResult}">
            <f:param name = "username" value = "JSF 2.0 User" />
         </h:commandButton>
      </h:form>
   </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"
   xmlns:ui = "http://java.sun.com/jsf/facelets">
   <head>
      <title>JSF Tutorial!</title>
   </head>
   <h:body>
      <h2>Result</h2>
      <hr />
      #{userData.data}
   </h:body>
</html>  

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

JSF h:param

按“ Show Message按钮,您将看到以下结果。

JSF h:param1