|  |  |  | 
|---|
|  |  |  | import org.mybatis.spring.annotation.MapperScan; | 
|---|
|  |  |  | import org.springframework.boot.SpringApplication; | 
|---|
|  |  |  | import org.springframework.boot.autoconfigure.SpringBootApplication; | 
|---|
|  |  |  | import org.springframework.cloud.client.discovery.EnableDiscoveryClient; | 
|---|
|  |  |  | import org.springframework.context.ApplicationContext; | 
|---|
|  |  |  | import org.springframework.scheduling.annotation.EnableAsync; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | 
|---|
|  |  |  | @EnableAsync | 
|---|
|  |  |  | @SpringBootApplication | 
|---|
|  |  |  | @MapperScan("com.doumee.dao.*") | 
|---|
|  |  |  | @EnableDiscoveryClient | 
|---|
|  |  |  | public class TimerApplication { | 
|---|
|  |  |  |  | 
|---|
|  |  |  | public static void main(String[] args) { | 
|---|