• zp's avatar
    init · f9a4de2a
    zp authored
    f9a4de2a
FundApplication.java 781 Bytes
package com.tanpu.fund;

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"
})
public class FundApplication {

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