第一个微服务实现——天气预报服务

    • Gradle 4.0
    • Spring Boot 1.5.6
    • Apache HttpClient 4.5.3

    数据来源

    理论上,天气的数据是天气预报的实现基础。本应用与实际的天气数据无关,理论上,可以兼容多种数据来源。但为求简单,我们在网上找了一个免费、可用的天气数据接口。

    调用天气服务接口示例,我们以“深圳”城市为例,可用看到如下天气数据返回。

    我们通过观察数据,来了解每个返回字段的含义。

    • “city”: 城市名称
    • “aqi”: 空气指数,
    • “wendu”: 实时温度
    • “date”: 日期,包含未来5天
    • “high”:最高温度
    • “low”: 最低温度
    • “fengli”: 风力
    • “fengxiang”: 风向
    • “type”: 天气类型

    以上数据,是我们需要的天气数据的核心数据,但是,同时也要关注下面两个字段:

    • “status”: 接口调用的返回状态,返回值“1000”,意味着数据是接口正常
    • “desc”: 接口状态的描述,“OK”代表接口正常

    重点关注返回值不是“1000”的情况,说明,这个接口调用异常了。

    初始化一个 Spring Boot 项目

    初始化一个 Spring Boot 项目 ,该项目可以直接在我们之前章节课程中的 basic-gradle 项目基础进行修改。同时,为了优化项目的构建速度,我们对Maven中央仓库地址和 Gradle Wrapper 地址做了调整。其中细节暂且不表,读者可以自行参阅源码,或者学习笔者所著的《Spring Boot 教程》()。其原理,我也整理到我的博客中了:

    1. // 依赖关系
    2. dependencies {
    3. //...
    4. // 添加 Apache HttpClient 依赖
    5. compile('org.apache.httpcomponents:httpclient:4.5.3')
    6. //...
    7. }

    创建天气信息相关的值对象

    创建com.waylau.spring.cloud.vo包,用于相关值对象。创建天气信息类 Weather

    1. public class Weather implements Serializable {
    2. private static final long serialVersionUID = 1L;
    3. private String city;
    4. private String aqi;
    5. private String wendu;
    6. private String ganmao;
    7. private Yesterday yesterday;
    8. private List<Forecast> forecast;
    9. public String getCity() {
    10. return city;
    11. }
    12. public void setCity(String city) {
    13. this.city = city;
    14. }
    15. public String getAqi() {
    16. return aqi;
    17. }
    18. public void setAqi(String aqi) {
    19. this.aqi = aqi;
    20. }
    21. public String getWendu() {
    22. return wendu;
    23. }
    24. public void setWendu(String wendu) {
    25. this.wendu = wendu;
    26. }
    27. public String getGanmao() {
    28. return ganmao;
    29. }
    30. public void setGanmao(String ganmao) {
    31. this.ganmao = ganmao;
    32. }
    33. public Yesterday getYesterday() {
    34. return yesterday;
    35. }
    36. public void setYesterday(Yesterday yesterday) {
    37. this.yesterday = yesterday;
    38. }
    39. public List<Forecast> getForecast() {
    40. }
    41. public void setForecast(List<Forecast> forecast) {
    42. this.forecast = forecast;
    43. }
    44. }

    昨日天气信息:

    未来天气信息:

    1. public class Forecast implements Serializable {
    2. private static final long serialVersionUID = 1L;
    3. private String date;
    4. private String high;
    5. private String fengxiang;
    6. private String low;
    7. private String fengli;
    8. private String type;
    9. public String getDate() {
    10. return date;
    11. public void setDate(String date) {
    12. this.date = date;
    13. }
    14. public String getHigh() {
    15. return high;
    16. }
    17. public void setHigh(String high) {
    18. this.high = high;
    19. }
    20. public String getFengxiang() {
    21. return fengxiang;
    22. }
    23. public void setFengxiang(String fengxiang) {
    24. this.fengxiang = fengxiang;
    25. }
    26. public String getLow() {
    27. return low;
    28. }
    29. public void setLow(String low) {
    30. this.low = low;
    31. }
    32. public String getFengli() {
    33. return fengli;
    34. }
    35. public void setFengli(String fengli) {
    36. this.fengli = fengli;
    37. }
    38. public String getType() {
    39. return type;
    40. }
    41. public void setType(String type) {
    42. this.type = type;
    43. }
    44. public Forecast() {
    45. }
    46. }

    WeatherResponse 作为整个消息的返回对象

    1. public class WeatherResponse implements Serializable {
    2. private static final long serialVersionUID = 1L;
    3. private Weather data; // 消息数据
    4. private String status; // 消息状态
    5. private String desc; // 消息描述
    6. public Weather getData() {
    7. return data;
    8. }
    9. this.data = data;
    10. }
    11. public String getStatus() {
    12. return status;
    13. }
    14. public void setStatus(String status) {
    15. }
    16. public String getDesc() {
    17. return desc;
    18. }
    19. public void setDesc(String desc) {
    20. this.desc = desc;
    21. }
    22. }

    服务接口及实现

    定义了获取服务的两个接口方法

    其实现为:

    1. @Service
    2. public class WeatherDataServiceImpl implements WeatherDataService {
    3. @Autowired
    4. private RestTemplate restTemplate;
    5. private final String WEATHER_API = "http://wthrcdn.etouch.cn/weather_mini";
    6. @Override
    7. public WeatherResponse getDataByCityId(String cityId) {
    8. String uri = WEATHER_API + "?citykey=" + cityId;
    9. return this.doGetWeatherData(uri);
    10. }
    11. @Override
    12. public WeatherResponse getDataByCityName(String cityName) {
    13. String uri = WEATHER_API + "?city=" + cityName;
    14. return this.doGetWeatherData(uri);
    15. }
    16. private WeatherResponse doGetWeatherData(String uri) {
    17. ResponseEntity<String> response = restTemplate.getForEntity(uri, String.class);
    18. String strBody = null;
    19. if (response.getStatusCodeValue() == 200) {
    20. strBody = response.getBody();
    21. }
    22. ObjectMapper mapper = new ObjectMapper();
    23. WeatherResponse weather = null;
    24. try {
    25. weather = mapper.readValue(strBody, WeatherResponse.class);
    26. } catch (IOException e) {
    27. e.printStackTrace();
    28. }
    29. return weather;
    30. }
    31. }

    控制器层暴露了RESTful API 地址。

    1. @RestController
    2. @RequestMapping("/weather")
    3. public class WeatherController {
    4. @Autowired
    5. private WeatherDataService weatherDataService;
    6. @GetMapping("/cityId/{cityId}")
    7. public WeatherResponse getReportByCityId(@PathVariable("cityId") String cityId) {
    8. return weatherDataService.getDataByCityId(cityId);
    9. }
    10. @GetMapping("/cityName/{cityName}")
    11. public WeatherResponse getReportByCityName(@PathVariable("cityName") String cityName) {
    12. return weatherDataService.getDataByCityName(cityName);
    13. }
    14. }

    @RestController自动会将返回的数据,序列化成 JSON数据格式。

    配置类

    RestConfiguration 是 RestTemplate 的配置类。

    访问API

    运行项目之后,访问项目的 API :

    能看到如下的数据返回