如果在Struts2的Action中有一个变量: private String CCustomerInfo cCustomerInfo;
则使用MyEclipse生成的它的getter方法是:getCCustomerInfo()
生成的setter方法是:setCCustomerInfo(CCustomerInfo cCustomerInfo);
针对类似“aTestClass”这样的类变量,IDE生成的getter和setter无法与Struts2页面上的输入框name绑定,遇到这种情况,应该将“aTestClass”这样的类变量修改成“testClass”这样的变量名,然后在生成它的getter和setter,生成的getter和setter方法应该是:
getTestClass()、setTestClass(ATestClass testClass)