国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專欄INFORMATION COLUMN

天氣數(shù)據(jù)API微服務 | 從0開始構建SpringCloud微服務(7)

zorro / 2963人閱讀

摘要:本章主要講解天氣數(shù)據(jù)微服務的實現(xiàn)。在我們拆分成微服務架構之后調(diào)用第三方接口的行為由天氣數(shù)據(jù)采集微服務中的定時任務進行。因此在天氣數(shù)據(jù)微服務中我們的天氣數(shù)據(jù)直接從緩存中進行獲取,若在緩存中獲取不到對應城市的數(shù)據(jù),則直接拋出錯誤。

照例附上項目github鏈接

本項目實現(xiàn)的是將一個簡單的天氣預報系統(tǒng)一步一步改造成一個SpringCloud微服務系統(tǒng)的過程,本節(jié)主要講的是單塊架構改造成微服務架構的過程,最終將原來單塊架構的天氣預報服務拆分為四個微服務:城市數(shù)據(jù)API微服務,天氣數(shù)據(jù)采集微服務,天氣數(shù)據(jù)API微服務,天氣預報微服務。

本章主要講解天氣數(shù)據(jù)API微服務的實現(xiàn)。


天氣數(shù)據(jù)API微服務的實現(xiàn) 配置pom文件

對原來單塊架構的天氣預報服務進行改進,去除多余的依賴,最終的pom文件如下:





    4.0.0



    com.demo

    sifoudemo02

    0.0.1-SNAPSHOT

    jar



    sifoudemo02

    Demo project for Spring Boot



    

        org.springframework.boot

        spring-boot-starter-parent

        2.0.5.RELEASE

         

    



    

        UTF-8

        UTF-8

        1.8

    



    

        

            org.springframework.boot

            spring-boot-devtools

            true

        

     

        

            org.springframework.boot

            spring-boot-starter-web

        



        

            org.springframework.boot

            spring-boot-starter-test

            test

        

        

        

            org.slf4j

            slf4j-jdk14

            1.7.7

            

        

        

            org.springframework.boot

            spring-boot-starter-data-redis

        

    



    

        

            

                org.springframework.boot

                spring-boot-maven-plugin

                

                    true

                

                

            

        

     







提供接口

在service中保留如下接口:

(1)根據(jù)城市Id查詢天氣的接口getDataByCityId

(2)根據(jù)城市名稱查詢天氣的接口getDataByCityName

注意:原來我們的天氣數(shù)據(jù)是先從緩存中獲取的,若查詢不到則調(diào)用第三方接口獲取天氣信息,并將其保存到緩存中。

在我們拆分成微服務架構之后調(diào)用第三方接口的行為由天氣數(shù)據(jù)采集微服務中的定時任務進行。

因此在天氣數(shù)據(jù)API微服務中我們的天氣數(shù)據(jù)直接從緩存中進行獲取,若在緩存中獲取不到對應城市的數(shù)據(jù),則直接拋出錯誤。

@Service
public class WeatherDataServiceImpl implements WeatherDataService {
    private final static Logger logger = LoggerFactory.getLogger(WeatherDataServiceImpl.class);  
    
    private static final String WEATHER_URI = "http://wthrcdn.etouch.cn/weather_mini?";
    
    @Autowired
    private StringRedisTemplate stringRedisTemplate;
    
    @Override
    public WeatherResponse getDataByCityId(String cityId) {
        String uri = WEATHER_URI + "citykey=" + cityId;
        return this.doGetWeahter(uri);
    }

    @Override
    public WeatherResponse getDataByCityName(String cityName) {
        String uri = WEATHER_URI + "city=" + cityName;
        return this.doGetWeahter(uri);
    }
    
    private WeatherResponse doGetWeahter(String uri) {
        String key = uri;
        String strBody = null;
        ObjectMapper mapper = new ObjectMapper();
        WeatherResponse resp = null;
        ValueOperations  ops = stringRedisTemplate.opsForValue();
        // 先查緩存,緩存有的取緩存中的數(shù)據(jù)
        if (stringRedisTemplate.hasKey(key)) {
            logger.info("Redis has data");
            strBody = ops.get(key);
        } else {
            logger.info("Redis don"t has data");
            // 緩存沒有,拋出異常
            throw new RuntimeException("Don"t has data!");
        }

        try {
            resp = mapper.readValue(strBody, WeatherResponse.class);
        } catch (IOException e) {
            //e.printStackTrace();
            logger.error("Error!",e);
        }
        
        return resp;
    }

}

在controller中提供根據(jù)城市Id和名稱獲取天氣數(shù)據(jù)的接口。

@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);
    }
}



文章版權歸作者所有,未經(jīng)允許請勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。

轉(zhuǎn)載請注明本文地址:http://specialneedsforspecialkids.com/yun/73603.html

相關文章

  • 天氣預報服務 | 0開始構建SpringCloud服務(8)

    摘要:本章主要講解天氣預報微服務的實現(xiàn)。獲取城市列表改為由城市數(shù)據(jù)微服務來提供數(shù)據(jù)改為由城市數(shù)據(jù)微服務提供數(shù)據(jù)深圳豬豬的天氣預報 照例附上項目github鏈接 本項目實現(xiàn)的是將一個簡單的天氣預報系統(tǒng)一步一步改造成一個SpringCloud微服務系統(tǒng)的過程,本節(jié)主要講的是單塊架構改造成微服務架構的過程,最終將原來單塊架構的天氣預報服務拆分為四個微服務:城市數(shù)據(jù)API微服務,天氣數(shù)據(jù)采集微服務,...

    hyuan 評論0 收藏0
  • 0開始構建SpringCloud服務(1)

    摘要:照例附上項目鏈接本項目實現(xiàn)的是將一個簡單的天氣預報系統(tǒng)一步一步改造成一個微服務系統(tǒng)的過程,第一節(jié)將介紹普通天氣預報系統(tǒng)的簡單實現(xiàn)。創(chuàng)建在其中提供如下接口根據(jù)城市獲取城市天氣數(shù)據(jù)的接口。配置創(chuàng)建的配置類。 照例附上項目github鏈接 本項目實現(xiàn)的是將一個簡單的天氣預報系統(tǒng)一步一步改造成一個SpringCloud微服務系統(tǒng)的過程,第一節(jié)將介紹普通天氣預報系統(tǒng)的簡單實現(xiàn)。 數(shù)據(jù)來源: 數(shù)...

    Joonas 評論0 收藏0
  • 架構~服務

    摘要:接下來繼續(xù)介紹三種架構模式,分別是查詢分離模式微服務模式多級緩存模式。分布式應用程序可以基于實現(xiàn)諸如數(shù)據(jù)發(fā)布訂閱負載均衡命名服務分布式協(xié)調(diào)通知集群管理選舉分布式鎖和分布式隊列等功能。 SpringCloud 分布式配置 SpringCloud 分布式配置 史上最簡單的 SpringCloud 教程 | 第九篇: 服務鏈路追蹤 (Spring Cloud Sleuth) 史上最簡單的 S...

    xinhaip 評論0 收藏0
  • 架構~服務 - 收藏集 - 掘金

    摘要:它就是史上最簡單的教程第三篇服務消費者后端掘金上一篇文章,講述了通過去消費服務,這篇文章主要講述通過去消費服務。概覽和架構設計掘金技術征文后端掘金是基于的一整套實現(xiàn)微服務的框架。 Spring Boot 配置文件 – 在坑中實踐 - 后端 - 掘金作者:泥瓦匠鏈接:Spring Boot 配置文件 – 在坑中實踐版權歸作者所有,轉(zhuǎn)載請注明出處本文提綱一、自動配置二、自定義屬性三、ran...

    church 評論0 收藏0

發(fā)表評論

0條評論

最新活動
閱讀需要支付1元查看
<