23 lines
524 B
Java
23 lines
524 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;
|
|
|
|
@Getter
|
|
@Setter
|
|
@Component
|
|
@ConfigurationProperties(prefix = "inference")
|
|
public class InferenceProperties {
|
|
|
|
private String nfs;
|
|
private String url;
|
|
private String batchUrl;
|
|
private String geojsonDir;
|
|
private String jarPath;
|
|
// 0312
|
|
private String jarPathV2;
|
|
private String inferenceServerName;
|
|
}
|