21 lines
577 B
Java
21 lines
577 B
Java
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;
|
|
import org.springframework.context.annotation.EnableAspectJAutoProxy;
|
|
|
|
|
|
@Slf4j
|
|
@MapperScan("com.njcn.**.mapper")
|
|
@SpringBootApplication(scanBasePackages = "com.njcn")
|
|
//@EnableAspectJAutoProxy
|
|
public class EntranceApplication {
|
|
|
|
public static void main(String[] args) {
|
|
SpringApplication.run(EntranceApplication.class, args);
|
|
}
|
|
|
|
}
|