반응형
server:
port: 8081
스프링 프로젝트에서 application.yaml 안에
위와 같이 port 값으로 지정한 8081을
자바에서 가져오려면
import org.springframework.beans.factory.annotation.Value;
@Service
class명 {
@Value("${server.port}")
private int SERVER_PORT;
}
class 명 위에 @Service / @Component 등의
어노테이션을 달아준 후
변수명 위에
@Value("${경로}") 을 지정해주면
application.yaml 에 설정한 값을
자바 클래스 안으로 가져올 수 있게 된다
반응형
'Spring Framework > Spring' 카테고리의 다른 글
Spring boot 현재 profile 확인방법 (0) | 2023.06.06 |
---|---|
스프링부트 Logger 메소드 내에서 파라미터 지정방법 (0) | 2022.07.05 |
스프링부트 Gson 세팅방법 정리(Gradle/Maven) (0) | 2022.05.15 |
자바 StringUtils.hasText를 이용한 공백 NULL 확인방법 (0) | 2022.04.25 |
JsonArray Thymeleaf Table에 출력하는 방법 (0) | 2022.02.09 |
댓글