Newer
Older
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.openfeign.EnableFeignClients;
import org.springframework.scheduling.annotation.EnableScheduling;
import org.springframework.transaction.annotation.EnableTransactionManagement;
@EnableFeignClients
@EnableScheduling
public static void main(String[] args) {
SpringApplication.run(AnalyticsManagement.class, args);