blob: 959aca175ed48ea782744f0102753b0a6a3c6fe8 [file] [log] [blame]
package com.alibaba.dubbo.demo.provider;
import org.springframework.context.support.ClassPathXmlApplicationContext;
/**
* Created by ken.lj on 2017/7/31.
*/
public class Provider1 {
public static void main(String[] args) throws Exception {
ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext(new String[]{"META-INF/spring/dubbo-demo-provider1.xml"});
context.start();
System.in.read(); // 按任意键退出
}
}