이 콘텐츠는 선택한 언어로 제공되지 않습니다.

Chapter 158. Weather


Weather Component

Available as of Camel 2.12
The weather: component is used for polling weather information from Open Weather Map - a site that provides free global weather and forecast information. The information is returned as a json String object.
Camel will poll for updates to the current weather and forecasts once per hour by default.
Maven users will need to add the following dependency to their pom.xml for this component:
<dependency>
    <groupId>org.apache.camel</groupId>
    <artifactId>camel-weather</artifactId>
    <version>x.x.x</version>
    <!-- use the same version as your Camel core version -->
</dependency>
Copy to Clipboard Toggle word wrap

URI format

weather://<unused name>[?options]
Copy to Clipboard Toggle word wrap

Options

Expand
Property Default Description
location null If null Camel will try and determine your current location using the geolocation of your ip address, else specify the city,country. For well known city names, Open Weather Map will determine the best fit, but multiple results may be returned. Hence specifying and country as well will return more accurate data. If you specify "current" as the location then the component will try to get the current latitude and longitude and use that to get the weather details. You can use lat and lon options instead of location.
lat null Latitude of location. You can use lat and lon options instead of location.
lon null Longitude of location. You can use lat and lon options instead of location.
period null If null, the current weather will be returned, else use values of 5, 7, 14 days. Only the numeric value for the forecast period is actually parsed, so spelling, capitalisation of the time period is up to you (its ignored)
headerName null To store the weather result in this header instead of the message body. This is useable if you want to keep current message body as-is.
mode JSON The output format of the weather data. The possible values are HTML, JSON or XML
units METRIC The units for temperature measurement. The possible values are IMPERIAL or METRIC
consumer.delay 3600000 Delay in millis between each poll (default is 1 hour)
consumer.initialDelay 1000 Millis before polling starts.
consumer.userFixedDelay false If true, use fixed delay between polls, otherwise fixed rate is used. See ScheduledExecutorService in JDK for details.
You can append query options to the URI in the following format, ?option=value&option=value&...

Exchange data format

Camel will deliver the body as a json formatted java.lang.String (see the mode option above).

Message Headers

Expand
Header Description
CamelWeatherQuery The original query URL sent to the Open Weather Map site
CamelWeatherLocation Used by the producer to override the endpoint location and use the location from this header instead.

Samples

In this sample we find the 7 day weather forecast for Madrid, Spain:
from("weather:foo?location=Madrid,Spain&period=7 days").to("jms:queue:weather");
Copy to Clipboard Toggle word wrap
To just find the current weather for your current location you can use this:
from("weather:foo").to("jms:queue:weather");
Copy to Clipboard Toggle word wrap
And to find the weather using the producer we do:
from("direct:start")
  .to("weather:foo?location=Madrid,Spain");
Copy to Clipboard Toggle word wrap
And we can send in a message with a header to get the weather for any location as shown:
  String json = template.requestBodyAndHeader("direct:start", "", "CamelWeatherLocation", "Paris,France", String.class);
Copy to Clipboard Toggle word wrap
And to get the weather at the current location, then:
  String json = template.requestBodyAndHeader("direct:start", "", "CamelWeatherLocation", "current", String.class);
Copy to Clipboard Toggle word wrap
맨 위로 이동
Red Hat logoGithubredditYoutubeTwitter

자세한 정보

평가판, 구매 및 판매

커뮤니티

Red Hat 문서 정보

Red Hat을 사용하는 고객은 신뢰할 수 있는 콘텐츠가 포함된 제품과 서비스를 통해 혁신하고 목표를 달성할 수 있습니다. 최신 업데이트를 확인하세요.

보다 포괄적 수용을 위한 오픈 소스 용어 교체

Red Hat은 코드, 문서, 웹 속성에서 문제가 있는 언어를 교체하기 위해 최선을 다하고 있습니다. 자세한 내용은 다음을 참조하세요.Red Hat 블로그.

Red Hat 소개

Red Hat은 기업이 핵심 데이터 센터에서 네트워크 에지에 이르기까지 플랫폼과 환경 전반에서 더 쉽게 작업할 수 있도록 강화된 솔루션을 제공합니다.

Theme

© 2025 Red Hat