반응형
application.yml
data:
type: MASTER
DataPropertis class 설정
import lombok.Data;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.context.annotation.Configuration;
import org.springframework.validation.annotation.Validated;
@Configuration
@ConfigurationProperties(prefix = "data") /// applicaton yml의 root 엘리먼트 참고
@Validated
@Data
public class DataProperty {
private String type;
}
사용 방법
@Slf4j
@RestController
@RequestMapping(value="/api")
public class ApiController {
@Autowired
DataProperty dataProperty;
public void getType() {
dataProperty.getType();
}
}
반응형
'skill > Java.Kotlin' 카테고리의 다른 글
JPA 에러 JpaSystemException, IdentifierGenerationException (0) | 2024.01.12 |
---|---|
springboot @Scheduler 다중 서버에서 한번만 실행 : shedlock (1) | 2023.11.21 |
[Java] springframework get method request param 배열일 경우, 콤마가 배열로 나눠서 오는 경우 error (0) | 2023.10.18 |
[Swawgger] GetMapping @RequestBody Error (0) | 2023.08.24 |
Json Data 시, 응답에 특정 데이터 제외 처리 (0) | 2023.08.07 |