FundApplication.java 962 Bytes
Newer Older
zp's avatar
zp committed
1 2
package com.tanpu.fund;

张亚辉's avatar
张亚辉 committed
3
import org.mybatis.spring.annotation.MapperScan;
zp's avatar
zp committed
4 5 6 7 8 9 10
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;
钱坤's avatar
钱坤 committed
11
import org.springframework.scheduling.annotation.EnableScheduling;
zp's avatar
zp committed
12 13 14 15 16 17 18 19 20 21

@EnableAsync
@EnableHystrix
@SpringBootApplication
@EnableFeignClients
@EnableDiscoveryClient
@ComponentScan({
        "com.tanpu.common",
        "com.tanpu.fund"
})
张亚辉's avatar
张亚辉 committed
22
@MapperScan("com.tanpu.fund.mapper.generator")
钱坤's avatar
钱坤 committed
23
@EnableScheduling
zp's avatar
zp committed
24 25 26 27 28 29
public class FundApplication {

    public static void main(String[] args) {
        SpringApplication.run(FundApplication.class, args);
    }
}