iBATIS
-
[ibatis]에러 : com.ibatis.common.beans.ProbeException삽질들/DB관련 2014. 5. 15. 10:02
[ibatis]에러 : com.ibatis.common.beans.ProbeException : There is no WRITEABLE property named '변수명' in class '클래스명' 원인: 전역변수와 sql xml 이 대소문자를 구별하기 때문. set/get 대소문자 와 sql.xml에 쓴 property id명을 동일하게 써야 한다. 수정한 ex > sql.xml java파일 String name; public void setName(String name){ this.name = name; }