Na página de exibição está com o seguinte erro:
No getter method for property Local of bean cpo
Tenho a classe com esse metodo e está tudo certo.
Na página tem um campo que é um inteiro e apresenta normalmente, só que quando coloco pra apresentar esse campo que é uma String, acontece o erro acima.
Segue abaixo o código da página.
<%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean" %>
<%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html" %>
<%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic" %>
<logic:notPresent name="cpoListBean" scope="session">
<logic:redirect forward="error"/>
</logic:notPresent>
<html:html locale="true">
<head>
<title></title>
</head>
<body>
<center>
<font face="Comic Sans MS" size="3">
<blockquote>
<center>
<table width="80%" border="1">
<tr>
<th width="10%">Cod</th>
<th width="20%">Local</th>
<th width="50%">Endereço</th>
<th width="20%">Bairro</th>
</tr>
<%-- loop --%>
<logic:iterate name="cpoListBean" id="cpo" >
<tr>
<td>
<bean:write name="cpo" property="idCpoCodCli"/>
</td>
<td>
<bean:write name="cpo" property="Local"/>
</td>
<td>
<bean:write name="cpo" property="Endereco"/>
</td>
<td><bean:write name="cpo" property="Bairro"/></td>
</tr>
</logic:iterate>
</table>
<br/>
<html:link page="/Welcome.do">Página Inicial</html:link>
</center>
</blockquote></body>
</html:html>
[color=“green”][size=“9”]*Editado para adicionar o BBCode ;)[/size][/color]