Class MapperMethod
- java.lang.Object
-
- pro.chenggang.project.reactive.mybatis.support.r2dbc.binding.MapperMethod
-
public class MapperMethod extends Object
The type Mapper method.- Author:
- Clinton Begin, Eduardo Macarron, Lasse Voss, Kazuki Shimizu, Gang Cheng
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classMapperMethod.MethodSignatureThe type Method signature.static classMapperMethod.SqlCommandThe type Sql command.
-
Constructor Summary
Constructors Constructor Description MapperMethod(Class<?> mapperInterface, Method method, org.apache.ibatis.session.Configuration config)Instantiates a new Mapper method.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Objectexecute(ReactiveSqlSession sqlSession, Object[] args)Execute object.static Class<?>parseInferredClass(Type genericType)Parse inferred class class.
-
-
-
Method Detail
-
parseInferredClass
public static Class<?> parseInferredClass(Type genericType)
Parse inferred class class.- Parameters:
genericType- the generic type- Returns:
- the class
-
execute
public Object execute(ReactiveSqlSession sqlSession, Object[] args)
Execute object.- Parameters:
sqlSession- the sql sessionargs- the args- Returns:
- the object
-
-