AlbumenJ commented on a change in pull request #283:
URL: https://github.com/apache/dubbo-samples/pull/283#discussion_r598371138



##########
File path: 
dubbo-samples-merge/dubbo-samples-merge-consumer/src/main/java/org/apache/dubbo/samples/merge/DubboConsumer.java
##########
@@ -0,0 +1,14 @@
+package org.apache.dubbo.samples.merge;
+
+import org.apache.dubbo.samples.merge.api.IDubboService;
+import org.springframework.context.support.ClassPathXmlApplicationContext;
+
+public class DubboConsumer {
+    public static void main(String[] args) throws Exception {
+        ClassPathXmlApplicationContext context = new 
ClassPathXmlApplicationContext("spring/dubbo-consumer.xml");
+        context.start();
+
+        IDubboService dubboService = (IDubboService) 
context.getBean("dubboService");

Review comment:
       Pls convert this case to integration test so it can verify automatically 




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
[email protected]



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to