1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.apache.ibatis.binding;
17
18 import java.lang.reflect.Method;
19 import java.lang.reflect.Proxy;
20 import java.util.Map;
21 import java.util.concurrent.ConcurrentHashMap;
22
23 import org.apache.ibatis.binding.MapperProxy.MapperMethodInvoker;
24 import org.apache.ibatis.session.SqlSession;
25
26
27
28
29 public class MapperProxyFactory<T> {
30
31 private final Class<T> mapperInterface;
32 private final Map<Method, MapperMethodInvoker> methodCache = new ConcurrentHashMap<>();
33
34 public MapperProxyFactory(Class<T> mapperInterface) {
35 this.mapperInterface = mapperInterface;
36 }
37
38 public Class<T> getMapperInterface() {
39 return mapperInterface;
40 }
41
42 public Map<Method, MapperMethodInvoker> getMethodCache() {
43 return methodCache;
44 }
45
46 @SuppressWarnings("unchecked")
47 protected T newInstance(MapperProxy<T> mapperProxy) {
48 return (T) Proxy.newProxyInstance(mapperInterface.getClassLoader(), new Class[] { mapperInterface }, mapperProxy);
49 }
50
51 public T newInstance(SqlSession sqlSession) {
52 final MapperProxy<T> mapperProxy = new MapperProxy<>(sqlSession, mapperInterface, methodCache);
53 return newInstance(mapperProxy);
54 }
55
56 }