application.properties 의 값을 불러와 사용하기
·
spring 스프링
프로젝트 중 출력값이 일정한 것을 반복해서 보여줘야 할 때가 생겼다. 그러면 이 값들을 계속 저장 해 놓고 불러 오는 것 보다 기본적으로 세팅을 해 놓고 불러오는 게 어떨까 라는 생각이 들어 알아보았다. application.properties 우선 원하는 내용을 application.properties 에 적어 준다. # application.properties myapp.message=Hello, World! Controller 그 후 컨트롤러를 통해 properties 값을 가져온다. properties의 값을 읽는 대표적인 @Value 어노테이션을 사용한다. package com.example.myapp; import org.springframework.beans.factory.annotation..
해니01_15
'application.properties' 태그의 글 목록