AI分析中心服务
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
package com.volvo.ai.analytic.center;
|
||||
|
||||
|
||||
import org.springframework.boot.SpringApplication;
|
||||
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||||
import org.springframework.context.annotation.Bean;
|
||||
import org.springframework.scheduling.annotation.EnableScheduling;
|
||||
import org.springframework.web.client.RestTemplate;
|
||||
|
||||
import com.volvo.common.feign.annotation.EnableVolvoFeignClients;
|
||||
|
||||
@SpringBootApplication(scanBasePackages = {"com.volvo"})
|
||||
@EnableVolvoFeignClients
|
||||
@EnableScheduling
|
||||
public class AiAnalyticCenterServiceApplication {
|
||||
|
||||
public static void main(String[] args) {
|
||||
SpringApplication.run(AiAnalyticCenterServiceApplication.class, args);
|
||||
}
|
||||
|
||||
@Bean
|
||||
RestTemplate restTemplate() {
|
||||
return new RestTemplate();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user