Spring> Spring Boot> Application property
2021. 10. 6.
application.properties 파일에 값을 쓰고 Controller에서 @Value 값을 이용하여 값을 불러올 수 있다. @Value("${coach.name}") 이런 식으로 사용한다. Spring Boot Properties application.properties 에서 구성할 수 있고 Server port, context path, actuator, security 등등 property를 구성할 수 있다. 대략 1000개 정도 넘기 때문에 자세한 내용은 Common Application Properties (spring.io) Common Application Properties docs.spring.io 에서 볼 수 있다. property 카테고리는 Core, Web, Security,..