Skip to content

Commit ab36734

Browse files
committed
Mybatis dependency updated to 3.3.1 and removed Cursor
1 parent 2c616a4 commit ab36734

File tree

2 files changed

+1
-14
lines changed

2 files changed

+1
-14
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@
111111
<dependency>
112112
<groupId>org.mybatis</groupId>
113113
<artifactId>mybatis</artifactId>
114-
<version>3.4.0-SNAPSHOT</version>
114+
<version>3.3.1-SNAPSHOT</version>
115115
<scope>provided</scope>
116116
</dependency>
117117

src/main/java/org/mybatis/spring/SqlSessionTemplate.java

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@
2828
import java.util.List;
2929
import java.util.Map;
3030

31-
import org.apache.ibatis.cursor.Cursor;
3231
import org.apache.ibatis.exceptions.PersistenceException;
3332
import org.apache.ibatis.executor.BatchResult;
3433
import org.apache.ibatis.session.Configuration;
@@ -433,16 +432,4 @@ public Object invoke(Object proxy, Method method, Object[] args) throws Throwabl
433432
}
434433
}
435434

436-
public <T> Cursor<T> selectCursor(String statement) {
437-
return null;
438-
}
439-
440-
public <T> Cursor<T> selectCursor(String statement, Object parameter) {
441-
return null;
442-
}
443-
444-
public <T> Cursor<T> selectCursor(String statement, Object parameter, RowBounds rowBounds) {
445-
return null;
446-
}
447-
448435
}

0 commit comments

Comments
 (0)