ArrayIndexOutOfBoundsException
-
[Spring] ArrayIndexOutOfBoundsException: 46824에러 해결방법Web/Servlet && Spring 2019. 9. 2. 00:14
프로젝트 실행시 자꾸 해당 ArrayIndexOutOfBoundsException 에러가 났었다. 한참을 찾았는데 이유는 간단했다. Spring버젼과 mybatis버젼이 서로 맞지 않았다. 아래와 같이 복붙해주면 된다. 프로젝트 재실행하게 되면 정상작동이 된다. org.mybatis mybatis 3.4.6 org.mybatis mybatis-spring 1.3.2 mybatis-spring의 2.0버젼은 스프링의 5버젼을 참고한다. 하지만 난 mybatis-spring의 1.3버젼을 써야한다. 왜냐하면 현재 스프링 3버젼을 사용하기 때문이다.