

关于自己的jar包依耐哪些jar,可以用maven的download source来下载下来看,想研究源码的,也可以用这个方法来下载下来看哦。
如果没有什么错误:直接运行就可以了,运行启动代码: public static void main(String[] args) throws Exception { ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext(new String[] {"classpath:conf/dubbo_core.xml"}); context.start(); System.out.println("runing"); System.in.read(); System.out.println("stoping"); }
二、关于:在xml文件中,http://code.alibabatech.com/schema/dubbo/dubbo.xsd 无法加载 1、因为这个网站已经废了,所以加载不了,但是在jar包中有一个meta-inf里面有这个文件,运行的时候,会自动加载的啦。错误如图:

