【六袆-Java】springboot调用中国天气第三方接口;获取指定城市的天气;存储在redis里面;

一、准备数据

API:http://www.weather.com.cn/data/sk/城市ID.html

  • 例如,指定获取广州城市的天气
  • API : http://www.weather.com.cn/data/sk/101280101.html

【六袆-Java】springboot调用中国天气第三方接口;获取指定城市的天气;存储在redis里面;_第1张图片

 

1.Controller层

    /**
     * 获取天气
     * @return null
     * @throws Exception
     */
    @GetMapping("/farmer/getWeather")
    @ApiOperation("获取天气-赣州")
    public ResponseResult getWeather() throws Exception {
        return orchardJobService.getWeather();
    }

 

2.Service层


    /**
     * 获取天气
     * @return
     */
    public ResponseResult getWeather() throws Exception {
        ResponseResult respon

你可能感兴趣的:(#,springboot综合,IDEA)