Skip to content

Commit 929d282

Browse files
committed
Add @SInCE in @flush + Configuration
1 parent 7209632 commit 929d282

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

src/main/java/org/apache/ibatis/annotations/Flush.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
* The maker annotation that invoke a flush statements via Mapper interface.
2525
*
2626
* @author Kazuki Shimizu
27+
* @since 3.3.0
2728
*/
2829
@Retention(RetentionPolicy.RUNTIME)
2930
@Target(ElementType.METHOD)

src/main/java/org/apache/ibatis/session/Configuration.java

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -380,10 +380,16 @@ public void setDefaultStatementTimeout(Integer defaultStatementTimeout) {
380380
this.defaultStatementTimeout = defaultStatementTimeout;
381381
}
382382

383+
/**
384+
* @since 3.3.0
385+
*/
383386
public Integer getDefaultFetchSize() {
384387
return defaultFetchSize;
385388
}
386389

390+
/**
391+
* @since 3.3.0
392+
*/
387393
public void setDefaultFetchSize(Integer defaultFetchSize) {
388394
this.defaultFetchSize = defaultFetchSize;
389395
}

0 commit comments

Comments
 (0)