Storm+Springboot+dubbo Service 注入

前端之家收集整理的这篇文章主要介绍了Storm+Springboot+dubbo Service 注入前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

<table class="text"><tr class="li1">
<td class="ln"><pre class="de1">1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32

生成的bolt)。   这时候如果想在storm中获取dubbo RPC service,是没办法直接使用Reference的。   那么可以创建一个ServiceProxy,在proxy中去引用dubbo service @Service public class PlatformDataServiceProxy {     @Reference(version = "${platform.service.version}",            url = "dubbo://localhost:12345")     IPlatformDataService iDataService;       public IPlatformDataService getService() {         return iDataService;     } }   这时在bolt中就可以通过proxy 取到dubbo service了 platformDataServiceProxy = SpringBeanUtil.getBean(PlatformDataServiceProxy.class); platformDataServiceProxy.getService() //dubbo service         原文链接:https://www.f2er.com/springboot/413559.html

猜你在找的Springboot相关文章