Files
pqs/pqs-event/event-boot/src/main/java/com/njcn/event/EventBootApplication.java
2022-06-21 20:47:46 +08:00

27 lines
664 B
Java

package com.njcn.event;
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;
/**
*
* @return
* @author hongawen
* @date 2022-03-07 15:37:00
*/
@Slf4j
@MapperScan("com.njcn.**.mapper")
@EnableFeignClients(basePackages = "com.njcn")
@SpringBootApplication(scanBasePackages = "com.njcn")
public class EventBootApplication {
public static void main(String[] args) {
SpringApplication.run(EventBootApplication.class, args);
}
}