如果在一个影射字段属性中第一个字母小写,但第二个字母使用了大写,这个时候iBatis还是会报告说对应的JavaBean中该字段没有writeable方法。
如:
<result property="xcoordinate" column="X_COORDINATE" />
对应JavaBean中有该字段属性和set/get方法
private Integer xcoordinate;

public Integer getXCoordinate() {
return xCoordinate;
}

public void setXCoordinate(Integer coordinate) {
xCoordinate = coordinate;
}
//set/get方法由eclipse自动生成。
但还是会报错误:
Caused by: com.ibatis.common.beans.ProbeException: There is no WRITEABLE property named 'xCoordinate' in class 'com.kompakar.test.ConfigView'
如:

对应JavaBean中有该字段属性和set/get方法










但还是会报错误:
