You need to make sure your getter/setter follow the JavaBean
Specification conventions; specifically, the getter and setter must have
the same type. You have a boolean getter and a String setter, which is
not allowed by the spec. Change one of them so they match and you should
be OK. Either typ
I'm using Struts 1.1. I have an ActionMapping class:
public class My_ActionMapping extends SecureActionConfig
{
protected boolean secured = false;
public boolean getLoginSecured() {
System.out.println("Getting Login Secured");
return secured;
}
public void setLoginSecured (String S
2 matches
Mail list logo