18 lines
474 B
Java
18 lines
474 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 rootSyncDir = "/app/original-images";
|
|
}
|