Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- RequestParam
- response
- actuator
- @RequestParam
- 플라이웨이트
- 프로퍼티
- JWT
- Boot
- 코딩테스트
- redis
- DTO
- Codewars
- 디자인 패턴
- Security
- Spring
- enum
- Docker
- yml
- @Value
- Request
- springboot
- ResponseDto
- @RequestBody
- RequestBody
- 로그인
- property
- 헬스체크
- 코드워즈
- 반환
- 파라미터
Archives
- Today
- Total
있을 유, 참 진
[SpringMVC] Yalm, Properties 파일의 프로퍼티 값 사용하기 본문
environment 클래스
- 사용법 설명
@Value 어노테이션
@ConfigurationProperties
- dependency 추가
environment 클래스
사용법 설명
greeting:
message: Hello from user-service
//...생략
@RequiredArgsConstructor
public class UserController {
private final Environment environment;
//...
@GetMapping("/welcome")
public String welcome() {
return environment.getProperty("greeting.message");
}
}
주입받은 environment
클래스의 getProperty(propertie)
메서드를 통해 값을 받아올 수 있다.
@Value 어노테이션
💡 프로퍼티 값을 주입받을 때 사용된다. @Value(${…}), @Value(#{…}) 표현식을 사용해 값을 지정
@Component
public class Greeting() {
@Value("${greeting.message}")
private String message;
}
//...생략
@RequiredArgsConstructor
public class UserController {
private final Greeting greeting;
//...
@GetMapping("/welcome")
public String welcome() {
return greeting.getMessage();
}
}
message 속성에 @Value를 통해서 값을 직접 주입한 후, Getter
를 통해 해당 값을 가져온다.
@ConfigurationProperties
💡 자바 클래스에 값을 가져와 사용할 수 있게 해주는 어노테이션
dependency 추가
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId>
<optional>true</optional>
</dependency>
@Component
@ConfigurationProperties(prefix = "greeting")
@Data
public class Greeting() {
private String message;
}
@Component
로 bean으로 등록해 주고, @ConfigurationProperties(prefix = “greeting")
으로 설정해 준다. property 값을 객체화시켜서 사용할 수 있다.
참고 사이트
'Spring' 카테고리의 다른 글
[Spring] 토비의 스프링:: Spring Boot Containerless 이해하기 (0) | 2023.04.18 |
---|---|
[Spring] Spring Actuator를 이용한 운영 어플리케이션 관리:: 세팅 및 Health check 테스트 (1) | 2023.04.09 |
[SpringMVC] 업무에서 활용한 @JsonInclude 사용법 정리 (4) | 2023.03.31 |
[SpringMVC] 업무에서 활용한 @RequestBody 사용법 정리 (0) | 2023.03.30 |
[SpringMVC] 업무에서 활용한 @RequestParam 사용법 정리 (8) | 2023.03.30 |
Comments