366.8. Samples
이 샘플에서는 스페인의 7 일기 예보를 찾을 수 있습니다.
from("weather:foo?location=Madrid,Spain&period=7 days&appid=APIKEY&geolocationAccessKey=IPSTACK_ACCESS_KEY&geolocationRequestHostIP=LOCAL_IP").to("jms:queue:weather");
현재 위치의 현재 날짜를 찾으려면 다음을 사용할 수 있습니다.
from("weather:foo?appid=APIKEY&geolocationAccessKey=IPSTACK_ACCESS_KEY&geolocationRequestHostIP=LOCAL_IP").to("jms:queue:weather");
그리고 우리가 하는 프로듀서를 사용하여 기타를 찾을 수 있습니다:
from("direct:start") .to("weather:foo?location=Madrid,Spain&appid=APIKEY&geolocationAccessKey=IPSTACK_ACCESS_KEY&geolocationRequestHostIP=LOCAL_IP");
그리고 다음과 같이 헤더가 있는 메시지를 보내 모든 위치에 대한 환경을 얻을 수 있습니다.
String json = template.requestBodyAndHeader("direct:start", "", "CamelWeatherLocation", "Paris,France&appid=APIKEY", String.class);
그리고 현재 위치에서 환경을 얻으려면 다음을 수행하십시오.
String json = template.requestBodyAndHeader("direct:start", "", "CamelWeatherLocation", "current&appid=APIKEY", String.class);