Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In my jsf page I am calling a method called saveinsert and in my saveInsert method I have the following code.

try {
    System.out.println("rchd 1");
    for (Employees items : editCellItems) {
        System.out.println("rchd 2");
        items.setEmpId(empBean.getEmployeesId());
        System.out.println("after assigning  "+items.getEmployeesId());

    } catch (Exception e) {
      System.out.println("exception "+e.getMessage());  
      e.printStackTrace();

    }

where editCellItems is declared like

List<Employees> editCellItems= new ArrayList<Employees>();

and empBean is declared like this

Employees empBean= new Employees();

My problem is when I run my jsf page rchd 2 and code after that is not getting invoked. What could be the reason?

share|improve this question
Do you ever add any objects to editCellItems? – Jake Roussel Jul 15 '11 at 14:19
@Jake or remove – RMT Jul 15 '11 at 14:20
editCellItems is empty. Nothing is getting insterted into it. – maple_shaft Jul 15 '11 at 14:20
I am assuming you have a catch block, do you print the exception? (Please post the rest of your code) – Nix Jul 15 '11 at 14:20
No objects is added to editCellItems. idea behind is I am trying to do an insert to database. is it because editCellItems is null? If so how could I use editCellItems to pass to my method for data insertion? – Polppan Jul 15 '11 at 14:22
show 5 more comments

2 Answers

up vote 3 down vote accepted

Make sure you add values into editCellItems using the List<?> add() meothod. Also When doing a for each loop make sure you do not add or remove items or you will get an Exception. e.g.:

editCellItems.add(empBean);

edit: Also If you only have 1 element in your editCellItems, you might not want to use a list unless you are adding more,

share|improve this answer
ok thanks. Make sure you add values into editCellItems using the List<?> add() meothod. For this could give an example? – Polppan Jul 15 '11 at 14:36
The example I gave, is exactly what you will need. and you can add more employees if you need to. If you add empBean like that, you don't have to iterate through the loop to set the empID since it will be that item already. – RMT Jul 15 '11 at 14:38
1  
thanks, I have more elements in Employees table and hence I thought I would list. Appreciated. – Polppan Jul 15 '11 at 14:42
The only reason it's not getting executed is because there is nothing in the loop(If it was null, you'd get an exception). Make sure something is populated in the Array. – Nicholas Jul 15 '11 at 14:43

If no objects are in editCellItems, then it will iterate through the for loop 0 times. Therefore, you need to add some objects first:

editCellItems.add(empBean);
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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