Newer
Older
task-bldg / src / main / java / osm / surveyor / task / plateau / PlateauBean.java
@haya4 haya4 16 days ago 332 bytes Java17 & Spring boot 3.4.1
package osm.surveyor.task.plateau;

import org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.Component;

@Component
public class PlateauBean {

	@Value("${app.plateau.dir}")
	private String plateauDirName;
	
    public String getPlateauDirName() {
        return plateauDirName;
    }
    
}