使用Spring Cloud做项目的同学会使用Feign这个组件进行远程服务的调用,Feign这个组件采用模板的方式,有着优雅的代码书写规范。核心原理对Feign等相关注解进行解析,并提取信息,在Spring Boot工程启动时,通过反射生产Request的bean,并将提取的信息,设置到bean中,最后注入到ioc容器中。
现在有这样的场景,服务A提高RestApi接口,服务B、C、D等服务需要调用服务A提供的RestApi接口,这时最常见的做法是在服务B、C、D分别写一个FeignClient,并需要写RestApi接口的接收参数的实体和接收响应的实体DTo类。这样的做法就是需要不停复制代码。
有没有办法简洁上面的操作呢?有一种最常见的做法是将将服务A进行模块拆分,将FeignClient和常见的model、dto对外输出的类单独写一个模块,可以类似于取名a-service-open_share。这样将服务A服务分为两个模块,即A服务的业务模块和A服务需要被其他服务引用的公共类的模块。服务B、C、D只需要引用服务A的a-service-open_share就具备调用服务A的能力。
笔者在这里遇到一个有趣的其问题。首先看问题:
写一个FeignClient:
1 @FeignClient(name = "user-service") 2 public interface UserClient { 3 4 @GetMapping("/users") 5 List<User> getUsers(); 6 }
写一个实现类:
1 @RestController 2 public class UserController implements UserClient { 3 @Autowired 4 UserService userService; 5 6 @OverRide 7 List<User> getUsers(){ 8 return userService.getUsers(); 9 } 10 }
启动工程,浏览器访问接口localhost:8008/users,竟然能正确访问?!明明我在UserController类的getUsers方法没有加RequestMapping这样的注解。为何能正确的映射?!
带着这样的疑问,我进行了一番的分析和探索!
首先就是自己写了一个demo,首先创建一个接口类:
1 public interface ITest { 2 @GetMapping("/test/hi") 3 public String hi(); 4 }
写一个Controller类TestController
1 @RestController 2 public class TestController implements ITest { 3 @Override 4 public String hi() { 5 return "hi you !"; 6 } 7 }
启动工程,浏览器访问:http://localhost:8762/test/hi,浏览器显示:
hi you !
我去,TestController类的方法 hi()能够得到ITest的方法hi()的 @GetMapping("/test/hi")注解吗? 答案肯定是获取不到的。
特意编译了TestController字节码文件:
javap -c TestController
1 public class com.example.demo.web.TestController implements com.example.demo.web.ITest { 2 public com.example.demo.web.TestController(); 3 Code: 4 0: aload_0 5 1: invokespecial #1 // Method java/lang/Object."<init>":()V 6 4: return 7 8 public java.lang.String hi(); 9 Code: 10 0: ldc #2 // String hi you ! 11 2: areturn 12 }
上面的字节码没有任何关于@GetMapping("/test/hi")的信息,可见TestController直接获取不到@GetMapping("/test/hi")的信息。
那应该是Spring MVC在启动时在向容器注入Controller的Bean(HandlerAdapter)时做了处理。初步判断应该是通过反射获取到这些信息,并组装到Controller的Bean中。首先看通过反射能不能获取ITest的注解信息:
1 public static void main(String[] args) throws ClassNotFoundException { 2 Class c = Class.forName("com.example.demo.web.TestController"); 3 Class[] i=c.getInterfaces(); 4 System.out.println("start interfaces.." ); 5 for(Class clz:i){ 6 System.out.println(clz.getSimpleName()); 7 Method[] methods = clz.getMethods(); 8 for (Method method : methods) { 9 if (method.isAnnotationPresent(GetMapping.class)) { 10 GetMapping w = method.getAnnotation(GetMapping.class); 11 System.out.println("value:" + w.value()[0] ); 12 } 13 } 14 } 15 System.out.println("end interfaces.." ); 16 17 Method[] methods = c.getMethods(); 18 for (Method method : methods) { 19 if (method.isAnnotationPresent(GetMapping.class)) { 20 GetMapping w = method.getAnnotation(GetMapping.class); 21 System.out.println("value:" + w.value()); 22 } 23 } 24 }
允运行上面的代码:
start interfaces…
ITest
value:/test/hi
end interfaces…
可见通过反射是TestController类是可以获取其实现的接口的注解信息的。为了验证Spring Mvc 在注入Controller的bean时通过反射获取了其实现的接口的注解信息,并作为urlMapping进行了映射。于是查看了Spring Mvc 的源码,经过一系列的跟踪在RequestMappingHandlerMapping.java类找到了以下的方法:
1 protected RequestMappingInfo getMappingForMethod(Method method, Class<?> handlerType) { 2 RequestMappingInfo info = createRequestMappingInfo(method); 3 if (info != null) { 4 RequestMappingInfo typeInfo = createRequestMappingInfo(handlerType); 5 if (typeInfo != null) { 6 info = typeInfo.combine(info); 7 } 8 } 9 return info; 10 }
继续跟踪源码在AnnotatedElementUtils 类的searchWithFindSemantics()方法中发现了如下代码片段:
1 // Search on methods in interfaces declared locally 2 Class<?>[] ifcs = method.getDeclaringClass().getInterfaces(); 3 result = searchOnInterfaces(method, annotationType, annotationName, containerType, processor, 4 visited, metaDepth, ifcs); 5 if (result != null) { 6 return result; 7 }
这就是我要寻找的代码片段,验证了我的猜测。
写这篇文章我想告诉读者两件事:
- 可以将服务的对外类进行一个模块的拆分,比如很多服务都需要用的FeignClient、model、dto、常量信息等,这些信息单独打Jar,其他服务需要使用,引用下即可。
- url映射不一定要写在Contreller类的方法上,也可以写在它实现的接口里面。貌似并没有是luan用,哈。
原文链接:https://blog.csdn.net/forezp/article/details/80069961
原文地址:https://www.cnblogs.com/blwy-zmh/p/11994522.html