-
#01 No setter found for the keyProperty사이드 프로젝트 기록/Java 2021. 7. 28. 13:36
2021.07.28.수
환경
- JDK : 1.8
- 데이터베이스 : MySql
- Spring 4
- MyBaits 2.1.4
오류내용
프로젝트의 관리자 추가부분에서 에러 발생
org.apache.ibatis.executor.ExecutorException: No setter found for the keyProperty 'SEQ'
Admin 의 SEQ setter를 찾지 못하는 에러
해결방법
- 검색해보니 Admin vo에 seq sett 메서드를 생성하면 된다는데 난 이미 있었다
- Mapper에 useGeneratedKeys="true" 부분 삭제
<Insert id="insertData" useGeneratedKeys="true" keyProperty="SEQ"> /* query */ </insert>
SEQ 컬럼이 auto_increment로 되어있어서 저렇게 설정했는데 삭제하고 나니 오류가 해결되었다
반응형'사이드 프로젝트 기록 > Java' 카테고리의 다른 글