高级算法模块新建
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
package com.njcn.advance;
|
||||
|
||||
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;
|
||||
|
||||
/**
|
||||
* @author hongawen
|
||||
* @version 1.0.0
|
||||
* @createTime 2021年05月14日 15:14
|
||||
*/
|
||||
@Slf4j
|
||||
@MapperScan("com.njcn.**.mapper")
|
||||
@EnableFeignClients(basePackages = "com.njcn")
|
||||
@SpringBootApplication(scanBasePackages = "com.njcn")
|
||||
public class AdvanceBootMain {
|
||||
public static void main(String[] args) {
|
||||
SpringApplication.run(AdvanceBootMain.class, args);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user