摘要:照例附上项目链接本项目实现的是将一个简单的天气预报系统一步一步改造成一个微服务系统的过程,第一节将介绍普通天气预报系统的简单实现。创建在其中提供如下接口根据城市获取城市天气数据的接口。配置创建的配置类。
照例附上项目github链接
本项目实现的是将一个简单的天气预报系统一步一步改造成一个SpringCloud微服务系统的过程,第一节将介绍普通天气预报系统的简单实现。
数据来源:数据来源1:http://wthrcdn.etouch.cn/weather_mini?city=深圳
数据来源2:http://wthrcdn.etouch.cn/weather_mini?citykey=101280601
数据来源3:http://mobile.weather.com.cn/js/citylist.xml
数据格式根据返回的数据格式在vo包下面创建pojo。
创建WeatherDataService在其中提供如下接口:
1)根据城市Id获取城市天气数据的接口。
@Override public WeatherResponse getDataByCityId(String cityId) { String url=WEATHER_URI+ "citykey=" + cityId; return this.doGetWeather(url); }
2)根据城市名称获取天气数据的接口。
@Override public WeatherResponse getDataByCityName(String cityName) { String url = WEATHER_URI + "city=" + cityName; return this.doGetWeather(url); }
其中doGetWeather方法为抽离出来的请求天气数据的方法。
private WeatherResponse doGetWeahter(String uri) { ResponseEntityControllerrespString = restTemplate.getForEntity(uri, String.class); ObjectMapper mapper = new ObjectMapper(); WeatherResponse resp = null; String strBody = null; if (respString.getStatusCodeValue() == 200) { strBody = respString.getBody(); } try { resp = mapper.readValue(strBody, WeatherResponse.class); } catch (IOException e) { e.printStackTrace(); } return resp; }
在controller中分别提供根据城市id与名称获取天气数据的接口。
@RestController @RequestMapping("/weather") public class WeatherController { @Autowired private WeatherDataService weatherDataService; @GetMapping("/cityId/{cityId}") public WeatherResponse getWeatherByCityId(@PathVariable("cityId") String cityId) { return weatherDataService.getDataByCityId(cityId); } @GetMapping("/cityName/{cityName}") public WeatherResponse getWeatherByCityName(@PathVariable("cityName") String cityName) { return weatherDataService.getDataByCityName(cityName); } }配置
创建Rest的配置类。
@Configuration public class RestConfiguration { @Autowired private RestTemplateBuilder builder; @Bean public RestTemplate restTemplate() { return builder.build(); } }请求结果:
文章版权归作者所有,未经允许请勿转载,若此文章存在违规行为,您可以联系管理员删除。
转载请注明本文地址:https://www.ucloud.cn/yun/73409.html
摘要:本章主要讲解天气数据微服务的实现。在我们拆分成微服务架构之后调用第三方接口的行为由天气数据采集微服务中的定时任务进行。因此在天气数据微服务中我们的天气数据直接从缓存中进行获取,若在缓存中获取不到对应城市的数据,则直接抛出错误。 照例附上项目github链接 本项目实现的是将一个简单的天气预报系统一步一步改造成一个SpringCloud微服务系统的过程,本节主要讲的是单块架构改造成微服务...
摘要:本章主要讲解天气预报微服务的实现。获取城市列表改为由城市数据微服务来提供数据改为由城市数据微服务提供数据深圳猪猪的天气预报 照例附上项目github链接 本项目实现的是将一个简单的天气预报系统一步一步改造成一个SpringCloud微服务系统的过程,本节主要讲的是单块架构改造成微服务架构的过程,最终将原来单块架构的天气预报服务拆分为四个微服务:城市数据API微服务,天气数据采集微服务,...
摘要:创建服务注册中心创建一个基础的工程,命名为,并在中引入需要的依赖内容通过注解启动一个服务注册中心提供给其他应用进行对话。 1.Spring Cloud简介 Spring Cloud是一个基于Spring Boot实现的云应用开发工具,它为基于JVM的云应用开发中涉及的配置管理、服务发现、断路器、智能路由、微代理、控制总线、全局锁、决策竞选、分布式会话和集群状态管理等操作提供了一种简单的开发方...
摘要:它就是史上最简单的教程第三篇服务消费者后端掘金上一篇文章,讲述了通过去消费服务,这篇文章主要讲述通过去消费服务。概览和架构设计掘金技术征文后端掘金是基于的一整套实现微服务的框架。 Spring Boot 配置文件 – 在坑中实践 - 后端 - 掘金作者:泥瓦匠链接:Spring Boot 配置文件 – 在坑中实践版权归作者所有,转载请注明出处本文提纲一、自动配置二、自定义属性三、ran...
阅读 2379·2021-10-11 10:59
阅读 2681·2021-09-22 15:49
阅读 2614·2021-08-13 13:25
阅读 1267·2019-08-30 13:14
阅读 2361·2019-08-29 18:45
阅读 2970·2019-08-29 18:36
阅读 1463·2019-08-29 13:21
阅读 1143·2019-08-26 11:44