public class ReactiveMyBatis3Utils extends Object
| Modifier and Type | Method and Description |
|---|---|
static org.mybatis.dynamic.sql.select.render.SelectStatementProvider |
count(org.mybatis.dynamic.sql.BasicColumn column,
org.mybatis.dynamic.sql.SqlTable table,
org.mybatis.dynamic.sql.select.CountDSLCompleter completer) |
static reactor.core.publisher.Mono<Long> |
count(ToMonoLongFunction<org.mybatis.dynamic.sql.select.render.SelectStatementProvider> mapper,
org.mybatis.dynamic.sql.BasicColumn column,
org.mybatis.dynamic.sql.SqlTable table,
org.mybatis.dynamic.sql.select.CountDSLCompleter completer) |
static org.mybatis.dynamic.sql.select.render.SelectStatementProvider |
countDistinct(org.mybatis.dynamic.sql.BasicColumn column,
org.mybatis.dynamic.sql.SqlTable table,
org.mybatis.dynamic.sql.select.CountDSLCompleter completer) |
static reactor.core.publisher.Mono<Long> |
countDistinct(ToMonoLongFunction<org.mybatis.dynamic.sql.select.render.SelectStatementProvider> mapper,
org.mybatis.dynamic.sql.BasicColumn column,
org.mybatis.dynamic.sql.SqlTable table,
org.mybatis.dynamic.sql.select.CountDSLCompleter completer) |
static org.mybatis.dynamic.sql.select.render.SelectStatementProvider |
countFrom(org.mybatis.dynamic.sql.select.CountDSL<org.mybatis.dynamic.sql.select.SelectModel> start,
org.mybatis.dynamic.sql.select.CountDSLCompleter completer) |
static org.mybatis.dynamic.sql.select.render.SelectStatementProvider |
countFrom(org.mybatis.dynamic.sql.SqlTable table,
org.mybatis.dynamic.sql.select.CountDSLCompleter completer) |
static reactor.core.publisher.Mono<Long> |
countFrom(ToMonoLongFunction<org.mybatis.dynamic.sql.select.render.SelectStatementProvider> mapper,
org.mybatis.dynamic.sql.select.CountDSL<org.mybatis.dynamic.sql.select.SelectModel> start,
org.mybatis.dynamic.sql.select.CountDSLCompleter completer) |
static reactor.core.publisher.Mono<Long> |
countFrom(ToMonoLongFunction<org.mybatis.dynamic.sql.select.render.SelectStatementProvider> mapper,
org.mybatis.dynamic.sql.SqlTable table,
org.mybatis.dynamic.sql.select.CountDSLCompleter completer) |
static org.mybatis.dynamic.sql.delete.render.DeleteStatementProvider |
deleteFrom(org.mybatis.dynamic.sql.SqlTable table,
org.mybatis.dynamic.sql.delete.DeleteDSLCompleter completer) |
static reactor.core.publisher.Mono<Integer> |
deleteFrom(ToMonoIntFunction<org.mybatis.dynamic.sql.delete.render.DeleteStatementProvider> mapper,
org.mybatis.dynamic.sql.SqlTable table,
org.mybatis.dynamic.sql.delete.DeleteDSLCompleter completer) |
static org.mybatis.dynamic.sql.insert.render.GeneralInsertStatementProvider |
generalInsert(org.mybatis.dynamic.sql.SqlTable table,
UnaryOperator<org.mybatis.dynamic.sql.insert.GeneralInsertDSL> completer) |
static reactor.core.publisher.Mono<Integer> |
generalInsert(ToMonoIntFunction<org.mybatis.dynamic.sql.insert.render.GeneralInsertStatementProvider> mapper,
org.mybatis.dynamic.sql.SqlTable table,
UnaryOperator<org.mybatis.dynamic.sql.insert.GeneralInsertDSL> completer) |
static <R> org.mybatis.dynamic.sql.insert.render.InsertStatementProvider<R> |
insert(R row,
org.mybatis.dynamic.sql.SqlTable table,
UnaryOperator<org.mybatis.dynamic.sql.insert.InsertDSL<R>> completer) |
static <R> reactor.core.publisher.Mono<Integer> |
insert(ToMonoIntFunction<org.mybatis.dynamic.sql.insert.render.InsertStatementProvider<R>> mapper,
R row,
org.mybatis.dynamic.sql.SqlTable table,
UnaryOperator<org.mybatis.dynamic.sql.insert.InsertDSL<R>> completer) |
static <R> org.mybatis.dynamic.sql.insert.render.MultiRowInsertStatementProvider<R> |
insertMultiple(Collection<R> records,
org.mybatis.dynamic.sql.SqlTable table,
UnaryOperator<org.mybatis.dynamic.sql.insert.MultiRowInsertDSL<R>> completer) |
static <R> reactor.core.publisher.Mono<Integer> |
insertMultiple(ToMonoIntFunction<org.mybatis.dynamic.sql.insert.render.MultiRowInsertStatementProvider<R>> mapper,
Collection<R> records,
org.mybatis.dynamic.sql.SqlTable table,
UnaryOperator<org.mybatis.dynamic.sql.insert.MultiRowInsertDSL<R>> completer) |
static <R> reactor.core.publisher.Mono<Integer> |
insertMultipleWithGeneratedKeys(ToMonoIntBiFunction<String,List<R>> mapper,
Collection<R> records,
org.mybatis.dynamic.sql.SqlTable table,
UnaryOperator<org.mybatis.dynamic.sql.insert.MultiRowInsertDSL<R>> completer) |
static org.mybatis.dynamic.sql.select.render.SelectStatementProvider |
select(org.mybatis.dynamic.sql.BasicColumn[] selectList,
org.mybatis.dynamic.sql.SqlTable table,
org.mybatis.dynamic.sql.select.SelectDSLCompleter completer) |
static org.mybatis.dynamic.sql.select.render.SelectStatementProvider |
select(org.mybatis.dynamic.sql.select.QueryExpressionDSL<org.mybatis.dynamic.sql.select.SelectModel> start,
org.mybatis.dynamic.sql.select.SelectDSLCompleter completer) |
static org.mybatis.dynamic.sql.select.render.SelectStatementProvider |
selectDistinct(org.mybatis.dynamic.sql.BasicColumn[] selectList,
org.mybatis.dynamic.sql.SqlTable table,
org.mybatis.dynamic.sql.select.SelectDSLCompleter completer) |
static <R> reactor.core.publisher.Flux<R> |
selectDistinct(Function<org.mybatis.dynamic.sql.select.render.SelectStatementProvider,reactor.core.publisher.Flux<R>> mapper,
org.mybatis.dynamic.sql.BasicColumn[] selectList,
org.mybatis.dynamic.sql.SqlTable table,
org.mybatis.dynamic.sql.select.SelectDSLCompleter completer) |
static <R> reactor.core.publisher.Flux<R> |
selectList(Function<org.mybatis.dynamic.sql.select.render.SelectStatementProvider,reactor.core.publisher.Flux<R>> mapper,
org.mybatis.dynamic.sql.BasicColumn[] selectList,
org.mybatis.dynamic.sql.SqlTable table,
org.mybatis.dynamic.sql.select.SelectDSLCompleter completer) |
static <R> reactor.core.publisher.Flux<R> |
selectList(Function<org.mybatis.dynamic.sql.select.render.SelectStatementProvider,reactor.core.publisher.Flux<R>> mapper,
org.mybatis.dynamic.sql.select.QueryExpressionDSL<org.mybatis.dynamic.sql.select.SelectModel> start,
org.mybatis.dynamic.sql.select.SelectDSLCompleter completer) |
static <R> reactor.core.publisher.Mono<R> |
selectOne(Function<org.mybatis.dynamic.sql.select.render.SelectStatementProvider,reactor.core.publisher.Mono<R>> mapper,
org.mybatis.dynamic.sql.BasicColumn[] selectList,
org.mybatis.dynamic.sql.SqlTable table,
org.mybatis.dynamic.sql.select.SelectDSLCompleter completer) |
static <R> reactor.core.publisher.Mono<R> |
selectOne(Function<org.mybatis.dynamic.sql.select.render.SelectStatementProvider,reactor.core.publisher.Mono<R>> mapper,
org.mybatis.dynamic.sql.select.QueryExpressionDSL<org.mybatis.dynamic.sql.select.SelectModel> start,
org.mybatis.dynamic.sql.select.SelectDSLCompleter completer) |
static org.mybatis.dynamic.sql.update.render.UpdateStatementProvider |
update(org.mybatis.dynamic.sql.SqlTable table,
org.mybatis.dynamic.sql.update.UpdateDSLCompleter completer) |
static reactor.core.publisher.Mono<Integer> |
update(ToMonoIntFunction<org.mybatis.dynamic.sql.update.render.UpdateStatementProvider> mapper,
org.mybatis.dynamic.sql.SqlTable table,
org.mybatis.dynamic.sql.update.UpdateDSLCompleter completer) |
public static reactor.core.publisher.Mono<Long> count(ToMonoLongFunction<org.mybatis.dynamic.sql.select.render.SelectStatementProvider> mapper, org.mybatis.dynamic.sql.BasicColumn column, org.mybatis.dynamic.sql.SqlTable table, org.mybatis.dynamic.sql.select.CountDSLCompleter completer)
public static org.mybatis.dynamic.sql.select.render.SelectStatementProvider count(org.mybatis.dynamic.sql.BasicColumn column,
org.mybatis.dynamic.sql.SqlTable table,
org.mybatis.dynamic.sql.select.CountDSLCompleter completer)
public static reactor.core.publisher.Mono<Long> countDistinct(ToMonoLongFunction<org.mybatis.dynamic.sql.select.render.SelectStatementProvider> mapper, org.mybatis.dynamic.sql.BasicColumn column, org.mybatis.dynamic.sql.SqlTable table, org.mybatis.dynamic.sql.select.CountDSLCompleter completer)
public static org.mybatis.dynamic.sql.select.render.SelectStatementProvider countDistinct(org.mybatis.dynamic.sql.BasicColumn column,
org.mybatis.dynamic.sql.SqlTable table,
org.mybatis.dynamic.sql.select.CountDSLCompleter completer)
public static org.mybatis.dynamic.sql.select.render.SelectStatementProvider countFrom(org.mybatis.dynamic.sql.SqlTable table,
org.mybatis.dynamic.sql.select.CountDSLCompleter completer)
public static reactor.core.publisher.Mono<Long> countFrom(ToMonoLongFunction<org.mybatis.dynamic.sql.select.render.SelectStatementProvider> mapper, org.mybatis.dynamic.sql.SqlTable table, org.mybatis.dynamic.sql.select.CountDSLCompleter completer)
public static org.mybatis.dynamic.sql.select.render.SelectStatementProvider countFrom(org.mybatis.dynamic.sql.select.CountDSL<org.mybatis.dynamic.sql.select.SelectModel> start,
org.mybatis.dynamic.sql.select.CountDSLCompleter completer)
public static reactor.core.publisher.Mono<Long> countFrom(ToMonoLongFunction<org.mybatis.dynamic.sql.select.render.SelectStatementProvider> mapper, org.mybatis.dynamic.sql.select.CountDSL<org.mybatis.dynamic.sql.select.SelectModel> start, org.mybatis.dynamic.sql.select.CountDSLCompleter completer)
public static org.mybatis.dynamic.sql.delete.render.DeleteStatementProvider deleteFrom(org.mybatis.dynamic.sql.SqlTable table,
org.mybatis.dynamic.sql.delete.DeleteDSLCompleter completer)
public static reactor.core.publisher.Mono<Integer> deleteFrom(ToMonoIntFunction<org.mybatis.dynamic.sql.delete.render.DeleteStatementProvider> mapper, org.mybatis.dynamic.sql.SqlTable table, org.mybatis.dynamic.sql.delete.DeleteDSLCompleter completer)
public static <R> org.mybatis.dynamic.sql.insert.render.InsertStatementProvider<R> insert(R row,
org.mybatis.dynamic.sql.SqlTable table,
UnaryOperator<org.mybatis.dynamic.sql.insert.InsertDSL<R>> completer)
public static <R> reactor.core.publisher.Mono<Integer> insert(ToMonoIntFunction<org.mybatis.dynamic.sql.insert.render.InsertStatementProvider<R>> mapper, R row, org.mybatis.dynamic.sql.SqlTable table, UnaryOperator<org.mybatis.dynamic.sql.insert.InsertDSL<R>> completer)
public static org.mybatis.dynamic.sql.insert.render.GeneralInsertStatementProvider generalInsert(org.mybatis.dynamic.sql.SqlTable table,
UnaryOperator<org.mybatis.dynamic.sql.insert.GeneralInsertDSL> completer)
public static reactor.core.publisher.Mono<Integer> generalInsert(ToMonoIntFunction<org.mybatis.dynamic.sql.insert.render.GeneralInsertStatementProvider> mapper, org.mybatis.dynamic.sql.SqlTable table, UnaryOperator<org.mybatis.dynamic.sql.insert.GeneralInsertDSL> completer)
public static <R> org.mybatis.dynamic.sql.insert.render.MultiRowInsertStatementProvider<R> insertMultiple(Collection<R> records, org.mybatis.dynamic.sql.SqlTable table, UnaryOperator<org.mybatis.dynamic.sql.insert.MultiRowInsertDSL<R>> completer)
public static <R> reactor.core.publisher.Mono<Integer> insertMultiple(ToMonoIntFunction<org.mybatis.dynamic.sql.insert.render.MultiRowInsertStatementProvider<R>> mapper, Collection<R> records, org.mybatis.dynamic.sql.SqlTable table, UnaryOperator<org.mybatis.dynamic.sql.insert.MultiRowInsertDSL<R>> completer)
public static <R> reactor.core.publisher.Mono<Integer> insertMultipleWithGeneratedKeys(ToMonoIntBiFunction<String,List<R>> mapper, Collection<R> records, org.mybatis.dynamic.sql.SqlTable table, UnaryOperator<org.mybatis.dynamic.sql.insert.MultiRowInsertDSL<R>> completer)
public static org.mybatis.dynamic.sql.select.render.SelectStatementProvider select(org.mybatis.dynamic.sql.BasicColumn[] selectList,
org.mybatis.dynamic.sql.SqlTable table,
org.mybatis.dynamic.sql.select.SelectDSLCompleter completer)
public static org.mybatis.dynamic.sql.select.render.SelectStatementProvider select(org.mybatis.dynamic.sql.select.QueryExpressionDSL<org.mybatis.dynamic.sql.select.SelectModel> start,
org.mybatis.dynamic.sql.select.SelectDSLCompleter completer)
public static org.mybatis.dynamic.sql.select.render.SelectStatementProvider selectDistinct(org.mybatis.dynamic.sql.BasicColumn[] selectList,
org.mybatis.dynamic.sql.SqlTable table,
org.mybatis.dynamic.sql.select.SelectDSLCompleter completer)
public static <R> reactor.core.publisher.Flux<R> selectDistinct(Function<org.mybatis.dynamic.sql.select.render.SelectStatementProvider,reactor.core.publisher.Flux<R>> mapper, org.mybatis.dynamic.sql.BasicColumn[] selectList, org.mybatis.dynamic.sql.SqlTable table, org.mybatis.dynamic.sql.select.SelectDSLCompleter completer)
public static <R> reactor.core.publisher.Flux<R> selectList(Function<org.mybatis.dynamic.sql.select.render.SelectStatementProvider,reactor.core.publisher.Flux<R>> mapper, org.mybatis.dynamic.sql.BasicColumn[] selectList, org.mybatis.dynamic.sql.SqlTable table, org.mybatis.dynamic.sql.select.SelectDSLCompleter completer)
public static <R> reactor.core.publisher.Flux<R> selectList(Function<org.mybatis.dynamic.sql.select.render.SelectStatementProvider,reactor.core.publisher.Flux<R>> mapper, org.mybatis.dynamic.sql.select.QueryExpressionDSL<org.mybatis.dynamic.sql.select.SelectModel> start, org.mybatis.dynamic.sql.select.SelectDSLCompleter completer)
public static <R> reactor.core.publisher.Mono<R> selectOne(Function<org.mybatis.dynamic.sql.select.render.SelectStatementProvider,reactor.core.publisher.Mono<R>> mapper, org.mybatis.dynamic.sql.BasicColumn[] selectList, org.mybatis.dynamic.sql.SqlTable table, org.mybatis.dynamic.sql.select.SelectDSLCompleter completer)
public static <R> reactor.core.publisher.Mono<R> selectOne(Function<org.mybatis.dynamic.sql.select.render.SelectStatementProvider,reactor.core.publisher.Mono<R>> mapper, org.mybatis.dynamic.sql.select.QueryExpressionDSL<org.mybatis.dynamic.sql.select.SelectModel> start, org.mybatis.dynamic.sql.select.SelectDSLCompleter completer)
public static org.mybatis.dynamic.sql.update.render.UpdateStatementProvider update(org.mybatis.dynamic.sql.SqlTable table,
org.mybatis.dynamic.sql.update.UpdateDSLCompleter completer)
public static reactor.core.publisher.Mono<Integer> update(ToMonoIntFunction<org.mybatis.dynamic.sql.update.render.UpdateStatementProvider> mapper, org.mybatis.dynamic.sql.SqlTable table, org.mybatis.dynamic.sql.update.UpdateDSLCompleter completer)
Copyright © 2022. All rights reserved.