|
|
|
@ -3,6 +3,8 @@ package com.inspect.simulator; |
|
|
|
import okhttp3.Interceptor; |
|
|
|
import okhttp3.OkHttpClient; |
|
|
|
import okhttp3.Request; |
|
|
|
import org.slf4j.Logger; |
|
|
|
import org.slf4j.LoggerFactory; |
|
|
|
import org.springframework.beans.factory.annotation.Value; |
|
|
|
import org.springframework.boot.SpringApplication; |
|
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication; |
|
|
|
@ -16,6 +18,7 @@ import retrofit2.converter.scalars.ScalarsConverterFactory; |
|
|
|
@SpringBootApplication(exclude = {DataSourceAutoConfiguration.class}) |
|
|
|
@EnableScheduling |
|
|
|
public class InspectSimulatorApplication { |
|
|
|
private final static Logger log = LoggerFactory.getLogger(InspectSimulatorApplication.class); |
|
|
|
|
|
|
|
@Value("${analysis.api.url}") |
|
|
|
private String apiUrlOfAnalysis; |
|
|
|
@ -73,6 +76,7 @@ public class InspectSimulatorApplication { |
|
|
|
|
|
|
|
public static void main(String[] args) { |
|
|
|
SpringApplication.run(InspectSimulatorApplication.class, args); |
|
|
|
log.info("\n<=====☆ SIMULATOR MODULE ☆ =====> \n .-------. ____ __ \n | _ _ \\ \\ \\ / / \n | ( ' ) | \\ _. / ' \n |(_ o _) / _( )_ .' \n | (_,_).' __ ___(_ o _)' \n | |\\ \\ | || |(_,_)' \n | | \\ `' /| `-' / \n | | \\ / \\ / \n ''-' `'-' `-..-' "); |
|
|
|
} |
|
|
|
|
|
|
|
} |