package com.fdkankan.engineering; 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.annotation.ComponentScan; import org.springframework.scheduling.annotation.EnableScheduling; import org.springframework.transaction.annotation.EnableTransactionManagement; @SpringBootApplication @EnableTransactionManagement//开启事务 @EnableDiscoveryClient @EnableScheduling @ComponentScan(basePackages = {"com.fdkankan.*"}) @MapperScan("com.fdkankan.**.mapper") public class SeApplication { public static void main(String[] args) { SpringApplication.run(SeApplication.class, args); } }