I have a web app using JSF2 with JPA Entities, Stateless ejb session beans as my facade/ejb objects, and managed beans (request and view scoped) as controllers exposing business methods, managed controllers are pulling data from the injected stateless session beans.

but i am confused how to navigate and retain data accross views in my controllers in this environment, for example:

I have a jsf2 view page (departmentView.xhtml) that displays a list of Department objects and each row has an edit item. Clicking edit I want to load a new page and display a list or Employee's for that department on the new page, so i invoke the Employee controller passing it the selected Department

action="#{employeeController.getEmployeeListForADepartment(ithDepartment)}" 

here is a snippet of my departmentView.xhtml

    <h:dataTable id="table" value="#{departmentController.departmentList}" 
            var="ithDepartment">
...
<h:column>              
<h:commandLink id="editId" value="Edit"
action="#{employeeController.getEmployeeListForADepartment(ithDepartment)}" />
</h:column>

and my employeeController is defined as

ManagedBean(name = "employeeController")
@ViewScoped
public class EmployeeController implements Serializable {
   ...
private List<Employee> employeeList = new ArrayList<Employee>();
   ...      

@EJB
private com.ejb.session.EmployeeFacade ejbEmployeeFacade;    
   ...

public List<Employee> getEmployeeListForADepartment(Department dept) 
{
    if(employeeList==null || employeeList.isEmpty())
          employeeList = ejbEmployeeFacade.findEmployeesByDepartment(dept);  

// now i want to navigate to the employee view showing these employees for the
// selected department.
// but this navigation below triggers creating a new EmployeeController 
// and i lose my employeeList 
    return "employeeView";
}

i really want to avoid using jsf session scope, and believe there is a way to do this, just not reading about it in any of my jsf/ejb books.

thinking outloud, maybe don't have EmployeeController.getEmployeeListForADepartment(..) do a lookup, just create a parameter from the department id and pass that along via return "employeeView?departmentId=X"; and have constructor then do a lookup if the id is present?

can somehelp me with the proper way to implement this in EJB/JSF2 environment

thanks

link|improve this question

57% accept rate
feedback

1 Answer

up vote 0 down vote accepted

Use a simple GET <h:link> in the source view to pass the department ID and a <f:viewParam> in the target view to convert and set the department.

E.g.

<h:link id="editId" value="Edit" outcome="employeeView">
    <f:param name="departmentId" value="#{ithDepartment.id}" />
</h:link>

with

<f:metadata>
    <f:viewParam name="id" value="#{editDepartmentBean.department}"
        converter="#{departmentConverter}" converterMessage="Bad request. Unknown department."
        required="true" requiredMessage="Bad request. Please use a link from within the system." />
</f:metadata>

and

@ManagedBean
@ViewScoped
public class EditDepartmentBean {

    private Department department;

    // ...
}

See also:

link|improve this answer
one further clarification, I can navigate to the same 'list of employees' view/page in 2 senerios, 1) I have a department id and consequently only display employees for that dept id and 2) if i do not have a department id (no previous selection from department view) so i would want to display all employees from all departments. I assume i could just remove the sample attribute required="true" above and then my EmployeeController would look to see if a department id has been set and either return 1) a list of employees for a deptartment or 2) all employees from all departments? – user825402 Dec 7 '11 at 17:06
Yes, you can do so. Remove the required="true" and add an <f:event type="preRenderView"> which handles loading of employee list accordingly. – BalusC Dec 7 '11 at 17:16
3 comments in case it helps anyone 1) if I put the original code's EmployeeController scope to @RequestScoped instead of the @ViewScoped, then i retain data the when going from departmentView.xhtml to employeeView.xhtml, makes total JSF sense. 2) Implementing that way causes a POST to occur, cause implemented with <h:commandLink .. value="Edit" /> 3) BalusC way is better because it adhears to a RESTful design, does GET not POST -> less data xferred, and is bookmarkable, i.e. http://../employeeView.jsf?deptantmentId=1. BalusC, thanks for being great community member. Merry Christmas! – user825402 Dec 7 '11 at 19:46
You're welcome. Using POST for this makes honestly less sense as it's an idempotent request. But if it works for you, fine :) Note, since you're new here, please don't forget to mark the answer accepted whenever it helped (most) in solving the problem. See also meta.stackoverflow.com/questions/5234/…. Don't forget to do the same for questions you asked before, whenever applicable: stackoverflow.com/users/825402/user825402. If none of the answers is applicable and you already solved it by yourself, post an answer and accept it yourself. – BalusC Dec 7 '11 at 19:51
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.