- [springboot]application.properties란? 목차
springboot에서는 properties의 이름을 application-xxx.properties로 만들면 " xxx " 라는 이름의 profile이 생성되어 이를 통해 관리할 수 있습니다.
즉, profile=xxx라는 식으로 호출하면 해당 properties의 설정들을 가져올 수 있습니다.
호출하는 방식은 여러 방식이 있지만 스프링 부트의 기본 설정 파일인
application.properties에서 application-oauth.properties를 포함하도록 구성할 수 있습니다.
application.properties의 내용 중 일부
ex ) spring.profiles.include=oauth
이런식으로 선언해주면 oauth라는 설정파일을 사용할 수 있습니다..
.gitignore 등록
properties에서의 중요한 정보들은 깃허브 등 외부와 연동시 id,pw등이 함께 올라갈 수 있습니다.
따라서 gitignore에 등록해주어야만 합니다.
'Spring > Spring boot' 카테고리의 다른 글
[Springboot]@Builder란? (0) | 2020.02.22 |
---|---|
[Spring-boot]스프링시큐리티+OAuth2 소셜로그인 (3) (0) | 2020.02.11 |
[Spring-boot]스프링시큐리티+OAuth2 인증 (2) (0) | 2020.02.11 |
[Spring-boot]스프링시큐리티+OAuth1 인증 (1) (0) | 2020.02.11 |
[Springboot]JPA란? (0) | 2020.02.06 |