struts2.x中因变量命名错误不被注入到值栈的问题

//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!

原文地址:https://www.cnblogs.com/aukle/p/3221760.html