zhangxin1932 commented on a change in pull request #283:
URL: https://github.com/apache/dubbo-samples/pull/283#discussion_r598743958
##########
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:
yeah, a file which was commited a few minutes ago.
--
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]