Spring + Mybatis 연동 중 프로시져 콜 하는 부분에서
인덱스에서 누락된 IN 또는 OUT 매개변수:: 오류가 났다.
parameter 변수를 아무리 봐도 문제가 없었다...
statementType="CALLABLE" 이걸 빼먹었다....
헐~ ㅠ.ㅠ
결론, 프로시져 호출시에는 statementType="CALLABLE" 빼먹지 말자.
<select statementType="CALLABLE">
끝
'Framework' 카테고리의 다른 글
[Spring] Could not get JDBC Connection (0) | 2015.06.12 |
---|---|
[Mybatis] java.sql.SQLException: 해당 위치에 지원되지 않는 SQL92 토큰: (4) | 2015.03.10 |
[Spring, Mybatis] Error setting null for parameter #3 with JdbcType OTHER (0) | 2015.02.17 |
[Spring] Error creating bean with name 'sampleBean': Injection of resource dependencies failed; (0) | 2015.01.27 |
[Spring] Interceptor 를 설정(로그인 체크) (1) | 2014.12.10 |