src/main/resources 하위에 config.properties 파일 생성 후, 다음과 같이 API KEY 값 작성
SAMPLE_API_KEY = APIKEY값
API KEY를 사용하고자 하는 파일에 @PropertySource 어노테이션 작성
@PropertySource("classpath:config.properties")
public class SampleController {
...
}
@Value 어노테이션을 통해 config.properties 파일에서 설정해둔 변수명으로 값 주입
@Value("${SAMPLE_API_KEY}")
private String API_KEY;
보안을 위해 .gitignore 파일에 config.properties 추가
config.properties