bt-xtgxq-system-user-center/src/main/java/com/cm/serviceusercenter/ServiceUserCenterApplication.java

22 lines
624 B
Java
Raw Normal View History

2020-11-28 12:52:57 +08:00
package com.cm.serviceusercenter;
import org.mybatis.spring.annotation.MapperScan;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.annotation.ComponentScan;
import springfox.documentation.swagger2.annotations.EnableSwagger2;
/**
* @author WenG
*/
@EnableSwagger2
@SpringBootApplication
@ComponentScan("com.cm")
@MapperScan({"com.cm.**.dao"})
public class ServiceUserCenterApplication {
public static void main(String[] args) {
SpringApplication.run(ServiceUserCenterApplication.class, args);
}
}