Galera to quebrando a cabeça aqui e preciso de ajuda.
Tenho uma página JSP que chama um bean no qual ele conecta ao banco faz uma busca e preenche um arraylist de Cliente (esta declarado com ArrayList), até ai sem problemas o meu array tem dados. a pergunta é, como eu percorro esse bendito array usando o foreach. ?? segue a minha classe bean:
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
import java.util.ArrayList;
/**
*
* @author filipe
*/
public class TOperacoesClientes {
private ArrayList<IObjetoTransiente> listaObjs;
private ArrayList<TCliente> listClientes;
private TCliente cliente = null;
public ArrayList<TCliente> getListClientes() {
return listClientes;
}
public void retornaClientes() {
listClientes = new ArrayList<TCliente>();
...
TPersistencia persistenciaCliente = new TPersistencia();
this.listaObjs = persistenciaCliente.listar();
for (int count = 0; count < this.listaObjs.size(); count++){
cliente= (TCliente)this.listaObjs.get(count);
this.listClientes.add(cliente);
}
}
}
Não tenho a minima ideia de como fazer a JSP.