• Menu
  • Skip to primary navigation
  • Skip to main content
  • Skip to primary sidebar

JavaBeat

Java Tutorial Blog

  • Java
    • Java 7
    • Java 8
    • Java EE
    • Servlets
  • Spring Framework
    • Spring Tutorials
    • Spring 4 Tutorials
    • Spring Boot
  • JSF Tutorials
  • Most Popular
    • Binary Search Tree Traversal
    • Spring Batch Tutorial
    • AngularJS + Spring MVC
    • Spring Data JPA Tutorial
    • Packaging and Deploying Node.js
  • About Us
    • Join Us (JBC)
  • Java
    • Java 7
    • Java 8
    • Java EE
    • Servlets
  • Spring Framework
    • Spring Tutorials
    • Spring 4 Tutorials
    • Spring Boot
  • JSF Tutorials
  • Most Popular
    • Binary Search Tree Traversal
    • Spring Batch Tutorial
    • AngularJS + Spring MVC
    • Spring Data JPA Tutorial
    • Packaging and Deploying Node.js
  • About Us
    • Join Us (JBC)

h:commandLink – How to pass Parameter to next page?

April 12, 2008 //  by Krishna Srinivasan//  Leave a Comment

  • Topic : Java Server Faces (JSF)
  • Environment : J2EE 5.0, MyFaces 1.1.5

commandLink.jsp

also read:

  • Introduction to JSF
  • JSF Interview Questions
  • Request Processing Lifecycle phases in JSF

<!--
   Source : www.javabeat.net
-->



<html>
    <body>
          <f:view>
              <h:form id="commandLink">
                  <h:commandLink value="Test Link" action="#{commandLinkBean.linkIt}">
                      <f:param name="param1" value="ParamValue1" />
                      <f:param name="param2" value="ParamValue2" />
                  </h:commandLink>
              </h:form>
          </f:view>
    </body>
</html>

CommandLinkBean.java


/**
 * Source : www.javabeat.net
 * */
package net.javabeat.myfaces.nav;

public class CommandLinkBean {
    private String param1;
    private String param2;
    public CommandLinkBean() {

    }
    public String getParam1() {
        return param1;
    }

    public String getParam2() {
        return param2;
    }

    public void setParam2(String param2) {
        this.param2 = param2;
    }

    public void setParam1(String param1) {
        this.param1 = param1;
    }

    public String linkIt(){
        return "commandLink";
    }
}

faces-config.xml


<managed-bean>
        <managed-bean-name>
            commandLinkBean
        </managed-bean-name>
        <managed-bean-class>
            net.javabeat.myfaces.nav.CommandLinkBean
        </managed-bean-class>
        <managed-bean-scope>
            request
        </managed-bean-scope>
        <managed-property>
            <property-name>param1</property-name>
            <value>#{param.param1}</value>
        </managed-property>
        <managed-property>
            <property-name>param2</property-name>
            <value>#{param.param2}</value>
        </managed-property>
    </managed-bean>
    <navigation-rule>
        <navigation-case>
            <from-outcome>
                commandLink
            </from-outcome>
            <to-view-id>
                /pages/nav/commandLinkResult.jsp
            </to-view-id>
        </navigation-case>
    </navigation-rule>

commandLinkResult.jsp


<!--
   Source : www.javabeat.net
-->



<html>
    <body>
          <f:view>
              <h:form id="commandLink">
                  <h:outputText value="#{commandLinkBean.param1}"/>
                  <h:outputText value="#{commandLinkBean.param2}"/>
              </h:form>
          </f:view>
    </body>
</html>

Category: JSFTag: JSF Tags

About Krishna Srinivasan

He is Founder and Chief Editor of JavaBeat. He has more than 8+ years of experience on developing Web applications. He writes about Spring, DOJO, JSF, Hibernate and many other emerging technologies in this blog.

Previous Post: « How to use h:selectBooleanCheckBox within h:dataTable?
Next Post: How to set selected tab in rich:tabPanel tag? »

Reader Interactions

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Primary Sidebar

Follow Us

  • Facebook
  • Pinterest

FEATURED TUTORIALS

New Features in Spring Boot 1.4

Difference Between @RequestParam and @PathVariable in Spring MVC

What is new in Java 6.0 Collections API?

The Java 6.0 Compiler API

Introductiion to Jakarta Struts

What’s new in Struts 2.0? – Struts 2.0 Framework

JavaBeat

Copyright © by JavaBeat · All rights reserved
Privacy Policy | Contact