JSF参数传递方式之一:f:param标签

 

JSF参数传递方式之一:f:param标签  

页面到Bean的参数传递
页面中设置参数:
Java代码
  1.   
  2.             "Test2" action="#{paramBean.test}">   
  3.                 "name" value="zhang">   
  4.                 "id" value="123456">   
  5.                
  6.   
                     

注意:这里只能使用h:commandLink标签,而不能使用h:commandButton标签!
后台取参数:
(1) 通过Request对象取值
Java代码
  1. HttpServletRequest request = (HttpServletRequest)FacesContext.getCurrentInstance().getExternalContext().getRequest();   
  2.         request.getParameter("name");  
HttpServletRequest request = (HttpServletRequest)FacesContext.getCurrentInstance().getExternalContext().getRequest();         request.getParameter("name"); 

        (2)通过RequestParameterMap取值
Java代码
  1. Map varMap = FacesContext.getCurrentInstance().getExternalContext().getRequestParameterMap();   
  2.         varMap.get("id");  
Map varMap = FacesContext.getCurrentInstance().getExternalContext().getRequestParameterMap();         varMap.get("id"); 

        (3)通过配置文件进行Bean的属性值注入,在Bean的方法中直接使用属性
Java代码
  1.   
  2.   paramBean   
  3.   class>com.spg.bean.ParamBeanclass>   
  4.   request   
  5.      
  6.    id   
  7.    class>java.lang.Stringclass>   
  8.    #{param.id}    
  9.      
  10.   
   paramBean   com.spg.bean.ParamBean   request       id    java.lang.String    #{param.id}     

页面到页面的参数传递
页面中设置参数:
(1)
Java代码
  1. "param2.jsf">   
  2.                 "Test4">   
  3.                 "name" value="chen">   
  4.                 "id" value="123456">   
  5.       
                  

(2)
Java代码
  1. "param2.jsf?name=chen&id=123456">   
  2.                 "Test4">   
  3.       
       

注意:以上两种方法,不能同时使用!
页面中取参数:
(1) 使用JSF的值表达式
Java代码
  1. "#{param.name}">    
  2.     "#{param.id}">  
   

(2) 使用JSP的表达式
Java代码
  1. <%=request.getParameter("name")%>   
  2.     <%=request.getParameter("id")%>

 

另外还见到一种方式:如下但没有实验过

从JSF页面传递参数给托管Bean
虽然利用h:commandLink 和h:commandButton组件,可以通过action和actionListener来触发托管Bean中的方法,但是不能向这些方法中传递参数。对于动态传递参数,不是不可以实现,这点可以通过使用f:attribute来实现。而且f:attribute也可以很好的和actionListener联合使用。
例子:

<h:commandLink actionListener="#{myBean.action}">
        
<f:attribute name="attrname1" value="attrvalue1" />
        
<f:attribute name="attrname2" value="attrvalue2" />
        ...   
        
<h:outputText value="Click here" />
    
h:commandLink>
    
    
<h:commandButton value="Press here" actionListener="#{myBean.action}">
        
<f:attribute name="attrname1" value="attrvalue1" />
        
<f:attribute name="attrname2" value="attrvalue2" />
        ...
    
h:commandButton>

这些属性可以通过父组件的getAttributes()方法取到,父组件可以通过传递给actionListener的ActionEvent实例取到



public void action(ActionEvent event) 
    
...{   
        String attrvalue1 
= (String) event.getComponent().getAttributes().get("attrname1");
        String attrvalue2 
= (String) event.getComponent().getAttributes().get("attrname2");
        ...
    }

变量attrvalue1和attrvalue2包含从f:attribute set进来的值。
另一个欠文雅的方式就是通过f:param组件来传值,这个只是对h:commandLink起效。



<h:commandLink action="#{myBean.action

 

 

你可能感兴趣的:(jsf)