[关闭]
@puke3615 2016-08-20T16:52:57.000000Z 字数 8517 阅读 1019

动态代理

一、 动态代理实现方式

Java中的动态代理给我们提供一种动态生成类的方式,有很好的灵活性,这种技术一般会出现在一些第三方框架中,来降低接入方的使用成本。以下为常用的实现动态代理的几种方式:

  1. JDK自带的Proxy方式

    ​优点:JDK亲儿子;无依赖;使用简单

    缺点:代理类必须继承至少一个接口;无法继承已有父类

  2. asm方式,基于class字节码的操作

    ​优点:很底层到操作,性能高,对性能要求苛刻的建议使用

    缺点:使用成本高,要熟悉JVM汇编指令

  3. javassist方式,基于class字节码的操作

    优点:Api简单,通熟易懂,使用成本低

    缺点:性能相对偏低

  4. cglib方式,这个是基于ASM的

    ​优点:Api简单;高性能;高灵活性;支持继承父类;可以不用实现接口

    缺点:这个真的很强大,个人感觉比JDK自带的要强大很多,一定要说的话只能说使用这个需要加jar包依赖

二、业务开发的尴尬

开门见山,我们直接来看一个业务场景:

  1. package com.puke.net;
  2. /**
  3. * @author zijiao
  4. * @version 16/8/19
  5. */
  6. public class User {
  7. public String username;
  8. public String uId;
  9. public String sex;
  10. public String address;
  11. @Override
  12. public String toString() {
  13. return "User{" +
  14. "username='" + username + '\'' +
  15. ", uId='" + uId + '\'' +
  16. ", sex='" + sex + '\'' +
  17. ", address='" + address + '\'' +
  18. '}';
  19. }
  20. }

这里就是一个用户信息的Entity类,不解释了。

  1. package com.puke.net;
  2. import com.google.gson.Gson;
  3. import java.util.Map;
  4. /**
  5. * @author zijiao
  6. * @version 16/8/19
  7. */
  8. public class VirtualHelper {
  9. private static final Gson sGson = new Gson();
  10. public static String request(String url, Map<String, Object> params) {
  11. if (params != null) {
  12. if ("123".equals(params.get("username"))
  13. && "456".equals(params.get("password"))) {
  14. User user = new User();
  15. user.address = "杭州";
  16. user.sex = "男";
  17. user.uId = "Id";
  18. user.username = "啊啊";
  19. return sGson.toJson(user);
  20. }
  21. }
  22. return null;
  23. }
  24. }

这里我们模拟一个简单的网络请求。

当我们业务场景需要调用网络请求执行登录操作的时候,会这样写:

  1. package com.puke.net;
  2. import com.google.gson.Gson;
  3. import java.util.HashMap;
  4. import java.util.Map;
  5. /**
  6. * @author zijiao
  7. * @version 16/8/19
  8. */
  9. public class UserApi {
  10. private static final String API_LOGIN = "http://***.***.***";
  11. private static final Gson sGson = new Gson();
  12. public static User login(String username, String password) {
  13. Map<String, Object> params = new HashMap<>();
  14. params.put("username", username);
  15. params.put("password", password);
  16. String response = VirtualHelper.request(API_LOGIN, params);
  17. //注,这里只是为了举例说明一下,就假设此时的数据结构就是跟User一致的
  18. return sGson.fromJson(response, User.class);
  19. }
  20. }

那么,有什么问题呢。其实如果只是一个单单的login方法很难直观的反馈出来问题所在,很多时候我们为了去验证一个事物的合理性我们不妨去开始极端遐想一下这种情况:现在UserApi中又多了register方法,query方法,getToken方法,validate方法......甚至接下来一个UserApi已经满足不了我们了,我们开始有GoodsApi,OrderApi,MessageApi等等等等,试想一下N个Api的类,每个Api类都有N个类似于上面login的这种方法,而实际情况下我们request的入参还远远不止username,password两个这么简单。当我们业务场景扩大的时候,这些都是我们势必要面对的。这是一个问题,那能不能去以一种更优雅的方式去解决从而简化业务方的代码量并且降低使用成本呢。这里便引入了我们的动态代理~

三、 动态代理的方式去解决

我们的目标是状态是这样的:让业务方写写接口,加加注解配置,就可以直接使用

1. 先定义两个支持配置的注解
  1. package com.puke.net.proxy;
  2. import java.lang.annotation.ElementType;
  3. import java.lang.annotation.Inherited;
  4. import java.lang.annotation.Retention;
  5. import java.lang.annotation.RetentionPolicy;
  6. import java.lang.annotation.Target;
  7. /**
  8. * @author zijiao
  9. * @version 16/8/19
  10. */
  11. @Inherited
  12. @Target({ElementType.METHOD, ElementType.TYPE})
  13. @Retention(RetentionPolicy.RUNTIME)
  14. public @interface URL {
  15. String value();
  16. }
  1. package com.puke.net.proxy;
  2. import java.lang.annotation.ElementType;
  3. import java.lang.annotation.Inherited;
  4. import java.lang.annotation.Retention;
  5. import java.lang.annotation.RetentionPolicy;
  6. import java.lang.annotation.Target;
  7. /**
  8. * @author zijiao
  9. * @version 16/8/19
  10. */
  11. @Inherited
  12. @Target(ElementType.PARAMETER)
  13. @Retention(RetentionPolicy.RUNTIME)
  14. @interface Param {
  15. String value();
  16. }

这里不过多说明,就是两个可配字符串的注解。

2. 定义一套接口

这一步,其实不是必需的。我们完全可以在动态代理中直接显式的调用VirtualHelper类,但既然抽象出来网络Api这块,那就干脆定义一套接口出来来解耦具体实现。

  1. package com.puke.net.proxy;
  2. import java.util.Map;
  3. /**
  4. * @author zijiao
  5. * @version 16/8/19
  6. */
  7. public interface IRequest {
  8. String url();
  9. Map<String, Object> params();
  10. Class<?> responseCls();
  11. }
  1. package com.puke.net.proxy;
  2. import java.util.Map;
  3. /**
  4. * @author zijiao
  5. * @version 16/8/19
  6. */
  7. public class Request implements IRequest {
  8. String url;
  9. Map<String, Object> params;
  10. Class<?> responseCls;
  11. public Request(String url, Map<String, Object> params, Class<?> responseCls) {
  12. this.url = url;
  13. this.params = params;
  14. this.responseCls = responseCls;
  15. }
  16. @Override
  17. public String url() {
  18. return url;
  19. }
  20. @Override
  21. public Map<String, Object> params() {
  22. return params;
  23. }
  24. @Override
  25. public Class<?> responseCls() {
  26. return responseCls;
  27. }
  28. }

这是请求接口和实现类,粗略写下,比较简单

  1. package com.puke.net.proxy;
  2. /**
  3. * @author zijiao
  4. * @version 16/8/19
  5. */
  6. public interface INetExecutor {
  7. <T> T execute(IRequest request);
  8. }
  1. package com.puke.net.proxy;
  2. import com.google.gson.Gson;
  3. import com.puke.net.VirtualHelper;
  4. /**
  5. * @author zijiao
  6. * @version 16/8/19
  7. */
  8. @SuppressWarnings("unchecked")
  9. public class DefaultNetExecutor implements INetExecutor {
  10. private static final Gson sGson = new Gson();
  11. @Override
  12. public <T> T execute(IRequest request) {
  13. String response = VirtualHelper.request(request.url(), request.params());
  14. return (T) sGson.fromJson(response, request.responseCls());
  15. }
  16. }

这个是网络执行器已经默认的实现方式(使用上面的VirtualHelper),主要是抽象出接口可以让业务方自主定制真正的执行操作。

3. 动态代理器

这个就直接上代码了

  1. package com.puke.net.proxy;
  2. import android.text.TextUtils;
  3. import java.lang.annotation.Annotation;
  4. import java.lang.reflect.InvocationHandler;
  5. import java.lang.reflect.Method;
  6. import java.lang.reflect.Proxy;
  7. import java.util.HashMap;
  8. import java.util.Map;
  9. /**
  10. * @author zijiao
  11. * @version 16/8/19
  12. */
  13. @SuppressWarnings("unchecked")
  14. public class ApiGenerator {
  15. private static final Map<Class, Object> sApiCache = new HashMap<>();
  16. private static INetExecutor sNetExecutor;
  17. private static class Handler<T> implements InvocationHandler {
  18. private Class<T> apiInterface;
  19. public Handler(Class<T> apiInterface) {
  20. this.apiInterface = apiInterface;
  21. }
  22. @Override
  23. public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
  24. IRequest request = resolveRequest(method, args, apiInterface);
  25. if (sNetExecutor == null) {
  26. sNetExecutor = defaultNetExecutor();
  27. }
  28. return sNetExecutor.execute(request);
  29. }
  30. }
  31. private static <T> IRequest resolveRequest(Method method, Object[] args, Class<T> apiInterface) {
  32. StringBuilder urlBuilder = new StringBuilder();
  33. Map<String, Object> params = null;
  34. if (apiInterface.isAnnotationPresent(URL.class)) {
  35. String baseUrl = apiInterface.getAnnotation(URL.class).value();
  36. if (!TextUtils.isEmpty(baseUrl)) {
  37. urlBuilder.append(baseUrl);
  38. }
  39. }
  40. if (method.isAnnotationPresent(URL.class)) {
  41. String subUrl = method.getAnnotation(URL.class).value();
  42. if (!TextUtils.isEmpty(subUrl)) {
  43. urlBuilder.append(subUrl);
  44. }
  45. }
  46. int index = 0;
  47. for (Annotation[] annotations : method.getParameterAnnotations()) {
  48. for (Annotation annotation : annotations) {
  49. if (annotation instanceof Param) {
  50. String key = ((Param) annotation).value();
  51. if (!TextUtils.isEmpty(key)) {
  52. if (params == null) {
  53. params = new HashMap<>();
  54. }
  55. params.put(key, args[index]);
  56. }
  57. break;
  58. }
  59. }
  60. index++;
  61. }
  62. return new Request(urlBuilder.toString(), params, method.getReturnType());
  63. }
  64. private static INetExecutor defaultNetExecutor() {
  65. return new DefaultNetExecutor();
  66. }
  67. public static <T> T generateApi(Class<T> apiInterface) {
  68. if (apiInterface == null || !apiInterface.isInterface()) {
  69. throw new RuntimeException("the apiInterface is null or isn`t interface.");
  70. }
  71. synchronized (ApiGenerator.class) {
  72. Object api = sApiCache.get(apiInterface);
  73. if (api == null) {
  74. api = Proxy.newProxyInstance(apiInterface.getClassLoader(),
  75. new Class[]{apiInterface},
  76. new Handler(apiInterface));
  77. sApiCache.put(apiInterface, api);
  78. }
  79. return (T) api;
  80. }
  81. }
  82. /**
  83. * 外部提供自定义执行器
  84. *
  85. * @param netExecutor 网络执行器
  86. */
  87. public static void setNetExecutor(INetExecutor netExecutor) {
  88. sNetExecutor = netExecutor;
  89. }
  90. }

到此,我们的动态代理的编码部分就结束了。我们可以看一下ApiGenerator这个类有个sApiCache的静态变量,他缓存了动态代理生成的对象,这里这样做还是很有必要的,防止重复创建Api的代理类造成额外的性能消耗。

4. 使用姿势

业务方只需要按照我们约束的一套标准来写一个interface即可

  1. package com.puke.dynamicproxy;
  2. import com.puke.net.User;
  3. import com.puke.net.proxy.Param;
  4. import com.puke.net.proxy.URL;
  5. /**
  6. * @author zijiao
  7. * @version 16/8/19
  8. */
  9. @URL("http://***.***.***")
  10. public interface LoginApi {
  11. User login(@Param("username") String username,
  12. @Param("password") String password);
  13. }

这个是业务方要写的接口,以及对应的一些注解配置。

接下来就可以直接使用LoginApi生成的具体实例了

  1. package com.puke.dynamicproxy;
  2. import android.app.Activity;
  3. import android.os.Bundle;
  4. import android.view.View;
  5. import android.widget.Toast;
  6. import com.puke.net.User;
  7. import com.puke.net.proxy.ApiGenerator;
  8. public class MainActivity extends Activity {
  9. @Override
  10. protected void onCreate(Bundle savedInstanceState) {
  11. super.onCreate(savedInstanceState);
  12. setContentView(R.layout.activity_main);
  13. findViewById(R.id.login).setOnClickListener(new View.OnClickListener() {
  14. @Override
  15. public void onClick(View v) {
  16. LoginApi loginApi = ApiGenerator.generateApi(LoginApi.class);
  17. User user = loginApi.login("123", "456");
  18. Toast.makeText(MainActivity.this, user.toString(), Toast.LENGTH_SHORT).show();
  19. }
  20. });
  21. }
  22. }

由于此处模拟的网络请求,就不考虑主线程的进行这个操作了。

5. 使用对比

这里我再贴一下两种使用前后的代码对比

  1. public class UserApi {
  2. private static final String API_LOGIN = "http://***.***.***";
  3. private static final Gson sGson = new Gson();
  4. public static User login(String username, String password) {
  5. Map<String, Object> params = new HashMap<>();
  6. params.put("username", username);
  7. params.put("password", password);
  8. String response = VirtualHelper.request(API_LOGIN, params);
  9. //注,这里只是为了举例说明一下,就假设此时的数据结构就是跟User一致的
  10. return sGson.fromJson(response, User.class);
  11. }
  12. }

这个是传统的Api方式下业务方要写的代码

  1. @URL("http://***.***.***")
  2. public interface LoginApi {
  3. User login(@Param("username") String username,
  4. @Param("password") String password);
  5. }

这个是使用了动态代理之后业务方要写的代码

对比一下,明显能感觉到我们的代码精简了一大圈,看上去清晰明了~

这里我们再回归到最近开始提到的问题,当业务逐渐扩大的时候,这两种模式下,无论是开发效率上还是代码精简度上根本不具有可比性。

四、 一些想法

其实,基于动态代理我们还可以做很多事情,当某一类事物有一些共性,我们一直重复去写一堆“孪生”代码,不仅降低了我们的开发效率,还容易让我产生一种思维定式,按照一个固有的模式去重复做一类事太容易固化我们的思维。不仅仅是动态代理,还有很多很多,开发本该是件轻松的事。工欲善其事,必先利其器。

添加新批注
在作者公开此批注前,只有你和作者可见。
回复批注