package com.flow; import org.mybatis.spring.annotation.MapperScan; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.boot.web.client.RestTemplateBuilder; import org.springframework.context.annotation.Bean; import org.springframework.scheduling.annotation.EnableAsync; import org.springframework.scheduling.annotation.EnableScheduling; import org.springframework.web.client.RestTemplate; @MapperScan(basePackages = "com.flow.dao") @SpringBootApplication // 开启定时任务 @EnableScheduling // 开启异步 @EnableAsync public class FlowApplication { public static void main(String[] args) { SpringApplication.run(FlowApplication.class, args); } @Bean public RestTemplate restTemplate(RestTemplateBuilder builder) { return builder.build(); } }