溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何進行SpringCloud融入Python的實現(xiàn)

發(fā)布時間:2021-10-13 09:43:32 來源:億速云 閱讀:288 作者:柒染 欄目:編程語言

這篇文章將為大家詳細講解有關如何進行SpringCloud融入Python的實現(xiàn),文章內容質量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關知識有一定的了解。

前言

該篇文章分享如何將Python Web服務融入到Spring Cloud微服務體系中,并調用其服務,Python Web框架用的是Tornado

構建Python web服務

引入py-eureka-client客戶端

pip install py_eureka_client

manage.py

#!/usr/bin/env pythonimport tornado.httpserverimport tornado.ioloopimport tornado.optionsimport tornado.webimport py_eureka_client.eureka_client as eureka_clientfrom tornado.options import define, optionsfrom time import sleepdefine("port", default=3333, help="run on the given port", type=int)class IndexHandler(tornado.web.RequestHandler):  def get(self):    username = self.get_argument('username', 'Hello')    self.write(username + ', Administrator User!')      def post(self):    username = self.get_argument('username', 'Hello')    self.write(username + ', Administrator User!')class MainHandler(tornado.web.RequestHandler):  def get(self):    username = self.get_argument('username', 'Hello')    self.write(username + ', Coisini User!')  def post(self):    username = self.get_argument('username', 'Hello')    self.write(username + ', Coisini User!')def main():  tornado.options.parse_command_line()  # 注冊eureka服務  eureka_client.init_registry_client(eureka_server="http://localhost:31091/eureka/,http://localhost:8761/eureka/",                    app_name="python-tornado",                    instance_port=3333)  app = tornado.web.Application(handlers=[(r"/test", IndexHandler), (r"/main", MainHandler)])  http_server = tornado.httpserver.HTTPServer(app)  http_server.listen(options.port)  tornado.ioloop.IOLoop.instance().start()if __name__ == '__main__':  main()

大致說下上述代碼,向端口為31091的注冊中心注冊服務名為python-tornado的服務,端口為3333,提供兩個請求方式為GETPOST,接口路徑為/test/main的外部調用接口

啟動python服務(在此之前要創(chuàng)建一個Eureka服務注冊中心)

python manage.py runserver

運行結果

服務調用(Feign) - Feign用于便捷調用HTTP API

congfig類中需添加注解@EnableFeignClients,具體使用請百度

TestController.java

@RestControllerpublic class TestController {  private TestAPIClient testAPIClient;  @Autowired  public TestController(TestAPIClient testAPIClient) {    this.testAPIClient = testAPIClient;  }  @PostMapping("/test")  public String test(@RequestParam String username) throws Exception {    return this.testAPIClient.test(username);  }    @GetMapping("/test")  public String test1() throws Exception {    return this.testAPIClient.test1();  }}

TestAPIClient.java

@FeignClient(name="python-tornado", configuration = FeignConfigure.class)public interface TestAPIClient {  @PostMapping("/test")  String test(@RequestParam("username") String username);    @GetMapping("/test")  String test1();}

FeignConfigure.java

import feign.Logger;import feign.codec.Encoder;import feign.form.spring.SpringFormEncoder;import org.springframework.beans.factory.ObjectFactory;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.boot.autoconfigure.web.HttpMessageConverters;import org.springframework.cloud.netflix.feign.support.SpringEncoder;import org.springframework.context.annotation.Bean;import org.springframework.context.annotation.Configuration;@Configurationpublic class FeignConfigure {  @Bean  Logger.Level feignLoggerLevel() {    return Logger.Level.FULL;  }  @Autowired  private ObjectFactory<HttpMessageConverters> messageConverters;    @Bean  public Encoder feignFormEncoder() {    return new SpringFormEncoder(new SpringEncoder(messageConverters));  }}

Feign依賴

<!-- Feign Client --><dependency>  <groupId>org.springframework.cloud</groupId>  <artifactId>spring-cloud-starter-feign</artifactId></dependency><dependency>  <groupId>io.github.openfeign.form</groupId>  <artifactId>feign-form</artifactId>  <version>3.4.1</version></dependency><dependency>  <groupId>io.github.openfeign.form</groupId>  <artifactId>feign-form-spring</artifactId>  <version>3.4.1</version></dependency>

運行結果

在這里,我們用請求工具Postman來測試一下,可以看出,由TestController調用TestAPIClient再調用Python服務,至此,已完成微服務調用Python Web服務

關于如何進行SpringCloud融入Python的實現(xiàn)就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經查實,將立刻刪除涉嫌侵權內容。

AI