Newer
Older
task-bldg / src / main / java / osm / surveyor / task / plateau / Plateau.java
@haya4 haya4 16 days ago 384 bytes Plateau API test
package osm.surveyor.task.plateau;

import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.stereotype.Component;

import lombok.Data;

@Component
@ConfigurationProperties(prefix = "app.plateau")
@Data
public class Plateau {
	
	private String dir;		// app.plateau.dir=plateau-data
	
	public String getDirPathName() {
		return dir;
	}

}