How can access a public variable withouth getter and setter using OGNL in Struts2 ?
public class Keys{
public Integer count = 1;
public String all_type = "ALL";
.....
}
<s:property value="Key.all_type" />
How can access a public variable withouth getter and setter using OGNL in Struts2 ?
public class Keys{
public Integer count = 1;
public String all_type = "ALL";
.....
}
<s:property value="Key.all_type" />