Open DaehunGwak opened 2 years ago
http://apis.data.go.kr/1360000/VilageFcstInfoService/getUltraSrtNcst
?serviceKey=인증키&numOfRows=10&pageNo=1
&base_date=20151201&base_time=0600&nx=55&ny=127
spring:
profiles:
active: local # 기본 프로필 지정으로 로컬에서 개발할때 해당 프로필로 활성화
group:
local: local,security # application-local.yml, application-security.yml 프로필 동시활성화 효과
SpringBootTest 라 더 경량화 하는 테스트 방법은 더 알아봐야함
@SpringBootTest
@ActiveProfiles("local")
public class ProfileTest {
@Value("${test-value.something}")
private String something;
@Value("${test-value.something-sec}")
private String somethingSecurity;
@Test
public void 프로필그룹_밸류_테스트() {
assertThat(something).isEqualTo("something");
assertThat(somethingSecurity).isEqualTo("something-sec");
}
}
웹에서 현재 위치 (위도 경도) 추출하는 법: https://developer.mozilla.org/ko/docs/Web/API/Geolocation_API/Using_the_Geolocation_API
TO-DO
Spec