23 lines
675 B
Java
23 lines
675 B
Java
|
|
package com.njcn.advance;
|
||
|
|
/**
|
||
|
|
* @author denghuajun
|
||
|
|
* @version 1.0.0
|
||
|
|
* @date 2022年08月18日 09:33
|
||
|
|
*/
|
||
|
|
import lombok.extern.slf4j.Slf4j;
|
||
|
|
import org.mybatis.spring.annotation.MapperScan;
|
||
|
|
import org.springframework.boot.SpringApplication;
|
||
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||
|
|
import org.springframework.cloud.openfeign.EnableFeignClients;
|
||
|
|
|
||
|
|
@Slf4j
|
||
|
|
@MapperScan("com.njcn.**.mapper")
|
||
|
|
@EnableFeignClients(basePackages = "com.njcn")
|
||
|
|
@SpringBootApplication(scanBasePackages = "com.njcn")
|
||
|
|
public class
|
||
|
|
AdvanceBootApplication {
|
||
|
|
public static void main(String[] args) {
|
||
|
|
SpringApplication.run(AdvanceBootApplication.class, args);
|
||
|
|
}
|
||
|
|
}
|