Files
CN_Gather/entrance/src/main/java/com/njcn/gather/EntranceApplication.java

19 lines
485 B
Java
Raw Normal View History

2024-08-13 19:29:04 +08:00
package com.njcn.gather;
import lombok.extern.slf4j.Slf4j;
//import org.mybatis.spring.annotation.MapperScan;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@Slf4j
//@MapperScan("com.njcn.**.mapper")
@SpringBootApplication(scanBasePackages = "com.njcn")
public class EntranceApplication {
public static void main(String[] args) {
SpringApplication.run(EntranceApplication.class, args);
}
}