- 실시간 선박 위치 조회 API Classtype 구분 파라미터 추가 (core20 테이블 imo 유무로 ClassA, ClassB 분류) - html PUT,DELETE, PATCH 메소드 제거 및 POST 메소드 사용 변경 (보안이슈)
17 lines
515 B
Java
17 lines
515 B
Java
package com.snp.batch;
|
|
|
|
import org.springframework.boot.SpringApplication;
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|
import org.springframework.boot.context.properties.ConfigurationPropertiesScan;
|
|
import org.springframework.scheduling.annotation.EnableScheduling;
|
|
|
|
@SpringBootApplication
|
|
@EnableScheduling
|
|
@ConfigurationPropertiesScan
|
|
public class SnpBatchApplication {
|
|
|
|
public static void main(String[] args) {
|
|
SpringApplication.run(SnpBatchApplication.class, args);
|
|
}
|
|
}
|