()
public <T> T getMapper(Class<T> type) {
return configuration.<T>getMapper(type, this);
}
()
public <T> T getMapper(Class<T> type, SqlSession sqlSession) {
return (type, sqlSession);
}
()
public <T> T getMapper(Class<T> type, SqlSession sqlSession) {
final MapperProxyFactory<T> mapperProxyFactory = (MapperProxyFactory<T>) (type);
if (mapperProxyFactory == null) {
throw new BindingException("Type " + type + " is not known to the MapperRegistry.");
}
try {
return (sqlSession);
} catch (Exception e) {
throw new BindingException("Error getting mapper instance. Cause: " + e, e);
}
}
public T newInstance(SqlSession sqlSession) {
final MapperProxy<T> mapperProxy = new MapperProxy<T>(sqlSession, mapperInterface, methodCache);
return newInstance(mapperProxy);
}
protected T newInstance(MapperProxy<T> mapperProxy) {
return (T) ((), new Class[] { mapperInterface }, mapperProxy);
}
.构造器
public class MapperProxy implements InvocationHandler, Serializable
public MapperProxy(SqlSession sqlSession, Class<T> mapperInterface, Map<Method, MapperMethod> methodCache) {
this.sqlSession = sqlSession;
this.mapperInterface = mapperInterface;
this.methodCache = methodCache;
}
@Override
public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
try {
if ((())) {
return (this, args);
} else if (isDefaultMethod(method)) {
return invokeDefaultMethod(proxy, method, args);
}
} catch (Throwable t) {
throw (t);
}
final MapperMethod mapperMethod = cachedMapperMethod(method);
return (sqlSession, args);
}
代理机制的核心类
public class MapperMethod {
private final SqlCommand command;
private final MethodSignature method;
public MapperMethod(Class<?> mapperInterface, Method method, Configuration config) {
this.command = new SqlCommand(config, mapperInterface, method);
this.method = new MethodSignature(config, mapperInterface, method);
}
public Object execute(SqlSession sqlSession, Object[] args) {
Object result;
switch (()) {
case INSERT: {
Object param = (args);
result = rowCountResult(((), param));
break;
}
case UPDATE: {
Object param = (args);
result = rowCountResult(((), param));
break;
}
case DELETE: {
Object param = (args);
result = rowCountResult(((), param));
break;
}
case SELECT:
if (() && ()) {
executeWithResultHandler(sqlSession, args);
result = null;
} else if (()) {
result = executeForMany(sqlSession, args);
} else if (()) {
result = executeForMap(sqlSession, args);
} else if (()) {
result = executeForCursor(sqlSession, args);
} else {
Object param = (args);
result = ((), param);
}
break;
case FLUSH:
result = ();
break;
default:
throw new BindingException("Unknown execution method for: " + ());
}
if (result == null && ().isPrimitive() && !()) {
throw new BindingException("Mapper method '" + ()
+ " attempted to return null from a method with a primitive return type (" + () + ").");
}
return result;
}
private <E> Object executeForMany(SqlSession sqlSession, Object[] args) {
List<E> result;
Object param = (args);
if (()) {
RowBounds rowBounds = (args);
result = sqlSession.<E>selectList((), param, rowBounds);
} else {
result = sqlSession.<E>selectList((), param);
}
if (!().isAssignableFrom(())) {
if (().isArray()) {
return convertToArray(result);
} else {
return convertToDeclaredCollection((), result);
}
}
return result;
}
........
}
看到这里,我们会发现()就是绕一大圈去动态代理一个对象。这个对象根据返回类型和参数类型,最后用SqlSession的方法。
MapperMethod里面封装了自动根据配置,来使用SqlSession里面的方法。
和MethodSignature
public static class SqlCommand {
private final String name;
private final SqlCommandType type;
public SqlCommand(Configuration configuration, Class<?> mapperInterface, Method method) {
final String methodName = ();
final Class<?> declaringClass = ();
MappedStatement ms = resolveMappedStatement(mapperInterface, methodName, declaringClass,
configuration);
if (ms == null) {
if (() != null) {
name = null;
type = ;
} else {
throw new BindingException("Invalid bound statement (not found): "
+ () + "." + methodName);
}
} else {
name = ();
type = ();
if (type == ) {
throw new BindingException("Unknown execution method for: " + name);
}
}
}
public String getName() {
return name;
}
public SqlCommandType getType() {
return type;
}
private MappedStatement resolveMappedStatement(Class<?> mapperInterface, String methodName,
Class<?> declaringClass, Configuration configuration) {
String statementId = () + "." + methodName;
if ((statementId)) {
return (statementId);
} else if ((declaringClass)) {
return null;
}
for (Class<?> superInterface : ()) {
if ((superInterface)) {
MappedStatement ms = resolveMappedStatement(superInterface, methodName,
declaringClass, configuration);
if (ms != null) {
return ms;
}
}
}
return null;
}
}
public static class MethodSignature {
private final boolean returnsMany;
private final boolean returnsMap;
private final boolean returnsVoid;
private final boolean returnsCursor;
private final Class<?> returnType;
private final String mapKey;
private final Integer resultHandlerIndex;
private final Integer rowBoundsIndex;
private final ParamNameResolver paramNameResolver;
看完上面的分析,就是通过一些方法的信息生成一个Mapper代理对象,并调用SqlSession的方法查询结果。
下次看看SqlSession的实现吧。