|  |  |  | 
|---|
|  |  |  | package com.doumee; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | import lombok.extern.slf4j.Slf4j; | 
|---|
|  |  |  | import org.mybatis.spring.annotation.MapperScan; | 
|---|
|  |  |  | import org.springframework.boot.SpringApplication; | 
|---|
|  |  |  | import org.springframework.boot.autoconfigure.SpringBootApplication; | 
|---|
|  |  |  | 
|---|
|  |  |  | * @author Eva.Caesar Liu | 
|---|
|  |  |  | * @date 2023/03/21 14:49 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | @Slf4j | 
|---|
|  |  |  | @EnableAsync | 
|---|
|  |  |  | @SpringBootApplication | 
|---|
|  |  |  | @EnableDiscoveryClient | 
|---|
|  |  |  | @MapperScan("com.doumee.dao") | 
|---|
|  |  |  | @MapperScan("com.doumee.dao.*") | 
|---|
|  |  |  | public class SystemGatewayApplication { | 
|---|
|  |  |  | public static void main(String[] args) { | 
|---|
|  |  |  | ApplicationContext context = SpringApplication.run(SystemGatewayApplication.class); | 
|---|