Duvida com Struts - Listar

opaa galeraa, estou com uma duvida tipo estou fazendo um mini formulario, (só pra testes) e gostaria que logo abaixo do formulario que o usuario vai prencher aparece a tabela com os dados que ele prencheu, ate ai esta funcionando, mas eu gostaria que tipo fosse ficando um embaixo do outro… se ele prencher o formulario 10 vezes ficasse a lista com as 10 linhas, não sei se deu pra entender…

tava pensando em colocar um list e nesse list um while,

segue o codigo…
na jsp

<html:form action="UserAction">
	<table border="1">
	<tr>
		<td>Nome</td>
		<td><html:text property="nome" name="UserForm"/></td>
	</tr>
	<tr>
		<td>Idade</td>
		<td><html:text property="idade" name="UserForm"/></td>
	</tr>
	<tr>
		<td>Apelido</td>
		<td><html:text property="apelido" name="UserForm"/></td>
	<tr>
</table>
<html:submit value="Enviar"></html:submit>
</html:form>

<table border="1">
	<tr>
		<th>Nome:</th>
		<th>Apelido:</th>
		<th>Idade:</th>
	</tr>
	<tr>
		<td><bean:write name="UserForm" property="apelido"/></td> 
		<td><bean:write name="UserForm" property="nome"/></td>
		<td><bean:write name="UserForm" property="idade"/></td>
	</tr>
</table>[/code]
na action
[code]public ActionForward execute(ActionMapping mapping, ActionForm form,
			HttpServletRequest request, HttpServletResponse response)
			throws Exception {
		
		UserForm userForm = (UserForm) form;
		
		
		
		return mapping.findForward("success");[/code]
e no form
[code]public class UserForm extends ActionForm{
	
	private static final long serialVersionUID = 1L;
	
	private String nome;
	private String idade;
	private String apelido;

// gets e sets

manda bala então kara…

Usa o <c:forEach> na parte do:

<tr>
	<td><bean:write name="UserForm" property="apelido"/></td> 
	<td><bean:write name="UserForm" property="nome"/></td>
	<td><bean:write name="UserForm" property="idade"/></td>
</tr>

Flws.