본문 바로가기
spring

spring 개념(2)

by kcj3054 2021. 8. 6.

value 사용

  • @value는 properties 파일이나 application.yml파일에 세팅한 내용을 spring 변수에 주입하는 것이다
    ex :
@Value("${service.soomgo-api.host}")
private String apiHost;

restTemplate이란?

  • restTemplate , spring에서 http통신을 간단하게 하도록 도와주는것이다 ... .더 +++

미완성

'spring' 카테고리의 다른 글

springboot, mysql연결  (0) 2021.08.14
스프링 h2-console 설정 에러와 해결..  (0) 2021.08.08
스프링 멀티 모듈  (0) 2021.08.06
spring 개념(1)  (0) 2021.08.06
spring componentScan대상 범위에 관련하여..  (0) 2021.08.01