package org.springblade.mdm.config; import lombok.Getter; import org.springframework.beans.factory.annotation.Value; import org.springframework.stereotype.Component; @Getter @Component public class TaskPropertieBean { @Value("${task.file_scan_on_start:true}") //@Value("${task.fileScanOnStart:true}") private boolean fileScanOnStart; }