时间:2021-05-19
前言
该篇文章分享如何将Python Web服务融入到Spring Cloud微服务体系中,并调用其服务,Python Web框架用的是Tornado
构建Python web服务
引入py-eureka-client客户端
pip install py_eureka_clientmanage.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,提供两个请求方式为GET和POST,接口路径为/test和/main的外部调用接口
启动python服务(在此之前要创建一个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服务
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
接上文SpringCloud下基于OAUTH2认证授权的实现,我们将基于SpringCloud实现OAUTH2的注销功能。1增加自定义注销Endpoint所谓注
一、springcloud简介springcloud是一个基千springboot实现的微服务架构开发工具。它为微服务架构中涉及的配置管理、服务治理、断路器、智
前言SpringCloud是微服务中的翘楚,最佳的落地方案。SpringCloud中的Hystrix组件可以实现熔断,而在实际情况中,一般还需要直观地看到各个服
本文介绍了springcloud-使用Hystrix实现单个方法的fallback,分享给大家,具体如下:一、加入Hystrix依赖org.springfram
在微服务开发中SpringCloud全家桶集成了OpenFeign用于服务调用,SpringCloud的OpenFeign使用SpringMVCContract