forked from apache/dubbo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
support proxy for provider side. apache#67
- Loading branch information
1 parent
286fb12
commit 3c14399
Showing
4 changed files
with
44 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 16 additions & 0 deletions
16
...config/dubbo-config-api/src/test/java/com/alibaba/dubbo/config/mock/TestProxyFactory.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
package com.alibaba.dubbo.config.mock; | ||
|
||
import com.alibaba.dubbo.common.URL; | ||
import com.alibaba.dubbo.rpc.Invoker; | ||
import com.alibaba.dubbo.rpc.RpcException; | ||
import com.alibaba.dubbo.rpc.proxy.jdk.JdkProxyFactory; | ||
|
||
public class TestProxyFactory extends JdkProxyFactory { | ||
public static int count = 0; | ||
|
||
@Override | ||
public <T> Invoker<T> getInvoker(T proxy, Class<T> type, URL url) throws RpcException { | ||
count++; | ||
return super.getInvoker(proxy, type, url); | ||
} | ||
} |
3 changes: 2 additions & 1 deletion
3
.../dubbo-config-api/src/test/resources/META-INF/services/com.alibaba.dubbo.rpc.ProxyFactory
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
mockproxyfactory=com.alibaba.dubbo.config.mock.MockProxyFactory | ||
mockproxyfactory=com.alibaba.dubbo.config.mock.MockProxyFactory | ||
testproxyfactory=com.alibaba.dubbo.config.mock.TestProxyFactory |