• 大小: 43.9MB
    文件类型: .7z
    金币: 1
    下载: 0 次
    发布日期: 2023-07-17
  • 语言: 其他
  • 标签: dubbo  

资源简介

dubbo+zookeeper入门资源,可直接使用,适合新手练习使用。博文地址:http://blog.csdn.net/sysmwx/article/details/78870386

资源截图

代码片段和文件信息

package com.test;

import java.io.IOException;

import org.springframework.context.support.ClassPathxmlApplicationContext;

import com.test.service.TestService;

public class TestMain {
public static void main(String[] args) {
ClassPathxmlApplicationContext context = new ClassPathxmlApplicationContext(“applicationContext.xml“);
        context.start();
        TestService testService = (TestService) context.getBean(“testService“);
        System.out.println(testService.getStr());
        try {
            System.in.read();
        } catch (IOException e) {       
            e.printStackTrace();
        } 
}

}

评论

共有 条评论