Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8913157
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T04:23:23+00:00 2026-06-15T04:23:23+00:00

The use case is calling a method on a JSF 2.x Backing Bean directly

  • 0

The use case is calling a method on a JSF 2.x Backing Bean directly from a hyperlink (Non-Faces-Request). What is the best way to do this?

I imagine to do something like this:

The Link:

http://localhost/show.xhtml?id=30&backingbeanname=loaddata&method=load

The Backing Bean:

@Named (value = "loaddata")
public class DataLoader {

     public void load(int id){ ... }
}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-15T04:23:24+00:00Added an answer on June 15, 2026 at 4:23 am

    Use <f:viewParam> in the target view to set GET parameters as bean properties and use <f:event type="preRenderView"> to invoke an action on them.

    In show.xhtml:

    <f:metadata>
        <f:viewParam name="id" value="#{bean.id}" required="true" />
        <f:event type="preRenderView" listener="#{bean.load}" />
    </f:metadata>
    <h:message for="id" />
    

    In managed bean:

    private Integer id;
    private Data data;
    
    public void load() {
        data = service.find(id);
    }
    

    Note that in the above example the URL http://localhost/show.xhtml?id=30 is sufficient. You can always set more parameters as bean properties and have one “God” bean which delegates everything, but that’s after all likely clumsy.

    Also note that you can just attach a Converter to the <f:viewParam> (like as you could do in <h:inputText>). The load() method is then most likely entirely superfluous.

    <f:metadata>
        <f:viewParam name="id" value="#{bean.data}" 
            converter="dataConverter" converterMessage="Bad request. Unknown data."
            required="true" requiredMessage="Bad request. Please use a link from within the system." />
    </f:metadata>
    <h:message for="id" />
    

    See also:

    • Communication in JSF 2 – Processing GET request parameters
    • What can <f:metadata>, <f:viewParam> and <f:viewAction> be used for?
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

The usual way to use Qt widgets from Python seems to be to subclass
I want to call a method in jsoup dynamically. Here is my use case,
Use Case Show a photo uploaded by the user in a square box with
Use case: user clicks the link on a webpage - boom! load of files
Use case: I've just entered insert mode, and typed some text. Now I want
Use Case When a user goes to my website, they will be confronted with
Use case: Wanna insert custom annotation to fields in java class generated by JAXB
Use case: class MyTask(Task): queue = 'default_queue' def run(self): # do work Normally I
Use case: class A { static int s_common; public: static int getCommon () const
My use case: I am running Debian Squeeze Backport 3.2.0-0.bpo.2-amd64 over an Asus p-67

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.