//I declare... private String aBC="abc";
Then I Alt+Shift+R and S(Generate Getter/Setter) so smoothly...andEclipseGenerate like this
public String getaBC() { return aBC; } public void setaBC(String aBC) { this.aBC = aBC; }
Check this out in jsp
++<s:property value="aBC"/>
nothing...damn...
So I edit Getter/Setter like this...
public String getABC() { return aBC; } public void setABC(String aBC) { this.aBC = aBC; }
Well done!