23 lines
629 B
Java
23 lines
629 B
Java
package com.kamco.cd.kamcoback.config;
|
|
|
|
import lombok.Getter;
|
|
import lombok.Setter;
|
|
import org.springframework.boot.context.properties.ConfigurationProperties;
|
|
import org.springframework.stereotype.Component;
|
|
|
|
/** GeoJSON 파일 모니터링 설정 */
|
|
@Component
|
|
@ConfigurationProperties(prefix = "file.config")
|
|
@Getter
|
|
@Setter
|
|
public class FileConfig {
|
|
|
|
// private String rootSyncDir = "D:\\app\\original-images\\";
|
|
// private String tmpSyncDir = rootSyncDir + "tmp\\";
|
|
|
|
private String rootSyncDir = "/app/original-images/";
|
|
private String tmpSyncDir = rootSyncDir + "tmp/";
|
|
|
|
private String syncFileExt = "tfw,tif";
|
|
}
|