22 lines
624 B
Java
22 lines
624 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.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);
|
||
|
}
|
||
|
|
||
|
}
|