Olá…
estou tendo um probleminha ao criar um <s:radio/> …
estou fazendo o seguinte:
JSP
<s:action name="radioTag" var="tipoOpcoesEntrega"/>
<s:radio label="Opções de Envio" name="opcaoEntrega" list="tipoOpcoesEntrega"
JAVA
public class OpcoesJsp extends ActionSupport{
@SuppressWarnings("unchecked")
private List opcaoEntrega;
@SuppressWarnings("unchecked")
public String execute()throws Exception{
opcaoEntrega = new ArrayList();
opcaoEntrega.add("Retirar na loja");
opcaoEntrega.add("Enviar para o endereço");
return SUCCESS;
}
/**
* @return the opcaoEntrega
*/
@SuppressWarnings("unchecked")
public List getOpcaoEntrega() {
return opcaoEntrega;
}
/**
* @param opcaoEntrega the opcaoEntrega to set
*/
@SuppressWarnings("unchecked")
public void setOpcaoEntrega(List opcaoEntrega) {
this.opcaoEntrega = opcaoEntrega;
}
}
STRUTS-DEFAULT-CONFIG.XML
<action name="radioTag" class="br.gov.stf.action.util.OpcoesJsp">
<result>/jsp/catalogoproduto/exibirConfirmacao.jsp</result>
</action>
Alguem sabe como resolver isso… 
Ana Paula

