package com.tanpu.fund; 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.cloud.netflix.hystrix.EnableHystrix; import org.springframework.cloud.openfeign.EnableFeignClients; import org.springframework.context.annotation.ComponentScan; import org.springframework.scheduling.annotation.EnableAsync; @EnableAsync @EnableHystrix @SpringBootApplication @EnableFeignClients @EnableDiscoveryClient @ComponentScan({ "com.tanpu.common", "com.tanpu.fund" }) @MapperScan("com.tanpu.fund.mapper.generator") public class FundApplication { public static void main(String[] args) { SpringApplication.run(FundApplication.class, args); } }