package com.inspur.customer; import org.apache.dubbo.config.spring.context.annotation.EnableDubbo; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.scheduling.annotation.EnableAsync; /** * 用户管理模块启动类 * * @author wangbo */ @EnableDubbo @EnableAsync @SpringBootApplication(scanBasePackages = "com.inspur") public class SmsbCustomerWebApplication { public static void main(String[] args) { SpringApplication.run(SmsbCustomerWebApplication.class, args); } }