org.apache.ibatis.type.TypeException: Could not set parameters for mapping...
오류가 발생했다.
대충 보면 파라미터가 매칭이 안된다는 오류임...
나는 쿼리 xml을 생성할때 붙여넣기 해서 만들어서 발생한 오류
<select id="selectBook" parameterType="int" resultType="ContractProduct">
을 아래와 같이 변경
<select id="selectBook" parameterType="java.util.HashMap" resultType="ContractProduct">
에러 문구에 모든 답이 있다.
[Spring] @Scheduled 정해진 시간에 맞춰서 모듈 실행하기 (0) | 2017.11.27 |
---|---|
스프링(Spring) 게시판 소스 예제 (페이징, 댓글, 대댓글, 목록 조회, 글쓰기, 상세보기, oracle, mysql) (149) | 2017.08.10 |
Spring excel download xlsx (엑셀 2007 이후버전) (15) | 2017.01.19 |
Maven Build java.lang.NoClassDefFoundError 처리 (2) | 2016.11.22 |
Spring 파일 업로드 저장 (0) | 2016.09.20 |
댓글 영역