blob: b1ab269875a6d2d0eb9e95e533770871670460ac [file] [log] [blame]
package com.alibaba.dubbo.test;
import com.alibaba.dubbo.config.spring.context.annotation.DubboComponentScan;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
/**
* @author ken.lj
* @date 2017/09/10
*/
@SpringBootApplication
@DubboComponentScan(basePackages = "com.alibaba.dubbo.test.service")
public class ConsumerTestApp {
public static void main(String[] args) throws InterruptedException {
SpringApplication.run(ConsumerTestApp.class, args);
Thread.sleep(100000000);
}
}