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

24 lines
737 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;
2022-03-30 15:32:39 +08:00
import org.springframework.boot.web.servlet.ServletComponentScan;
2020-11-28 12:52:57 +08:00
import org.springframework.context.annotation.ComponentScan;
import springfox.documentation.swagger2.annotations.EnableSwagger2;
/**
* @author WenG
*/
@EnableSwagger2
@SpringBootApplication
@ComponentScan("com.cm")
@MapperScan({"com.cm.**.dao"})
2022-03-30 15:32:39 +08:00
@ServletComponentScan(basePackages = "com.cm")
2020-11-28 12:52:57 +08:00
public class ServiceUserCenterApplication {
public static void main(String[] args) {
SpringApplication.run(ServiceUserCenterApplication.class, args);
}
}