No support for iBatis in Spring4.2.0
Asked Answered
E

1

5

There is no support for ibatis in Spring4.2.0. MY project is upgrading from Spring 3.2.4 to Spring 4.2. As i googled, i found spring4.2 integration examples with mybatis but not with ibatis. Can somebody help me on how i can add ibatis support?

Ebracteate answered 2/9, 2015 at 12:32 Comment(0)
C
8

iBATIS 2.x support was removed from Spring in version 4.0 but there is a workaround for that. See this post:

http://blog.mybatis.org/2015/11/spring-4-got-you-down-with-no-ibatis.html

Basically you just have to add this dependency to your project:

<dependency>
    <groupId>org.mybatis</groupId>
    <artifactId>mybatis-2-spring</artifactId>
    <version>1.0.1</version>
</dependency>
Chess answered 14/2, 2016 at 14:31 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.