24 lines
737 B
Java
24 lines
737 B
Java
package com.cm.serviceusercenter;
|
|
|
|
import org.mybatis.spring.annotation.MapperScan;
|
|
import org.springframework.boot.SpringApplication;
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|
import org.springframework.boot.web.servlet.ServletComponentScan;
|
|
import org.springframework.context.annotation.ComponentScan;
|
|
import springfox.documentation.swagger2.annotations.EnableSwagger2;
|
|
|
|
/**
|
|
* @author WenG
|
|
*/
|
|
@EnableSwagger2
|
|
@SpringBootApplication
|
|
@ComponentScan("com.cm")
|
|
@MapperScan({"com.cm.**.dao"})
|
|
@ServletComponentScan(basePackages = "com.cm")
|
|
public class ServiceUserCenterApplication {
|
|
|
|
public static void main(String[] args) {
|
|
SpringApplication.run(ServiceUserCenterApplication.class, args);
|
|
}
|
|
|
|
} |