当前位置: 首页 > news >正文

WordPress怎么改文章颜色seo关键词排名查询

WordPress怎么改文章颜色,seo关键词排名查询,桂林论坛网广西新闻网,做游戏网站选服务器一:OpenFeign是什么? 是一个声明式的web客户端,只需要创建一个接口,添加注解即可完成微服务之间的调用 二:调用微服务的方式? ribbon restTemplate方式调用openFeign通过接口注解的方式调用 三:如何使用OpenFeign&…

一:OpenFeign是什么?

是一个声明式的web客户端,只需要创建一个接口,添加注解即可完成微服务之间的调用

二:调用微服务的方式?

  1. ribbon +restTemplate方式调用
  2. openFeign通过接口+注解的方式调用

三:如何使用OpenFeign?

  1. pom文件添加依赖
  2. yaml配置文件
  3. 主启动类,标注@EnableFeignClients注解
  4. 编写调用接口并标注@FeignClient注解
  5. 接口中的方法为实际想要调用的服务的方法

四:OpenFeign超时机制

因为OpenFeign的底层是ribbon进行负载均衡,所以它的超时时间是由ribbon控制
在这里插入图片描述

五:底层核心原理

底层通过JDK动态代理获取到接口中的服务信息,使用Ribbon管理后的RestTemplate进行调用

@SpringBootTest
class ApplicationTests {@Autowiredprivate RestTemplate restTemplate;@Testvoid contextLoads() {UserOrderFeign o = (UserOrderFeign) Proxy.newProxyInstance(UserOrderFeign.class.getClassLoader(), new Class[]{UserOrderFeign.class}, new InvocationHandler() {@Overridepublic Object invoke(Object proxy, Method method, Object[] args) throws Throwable {// 获取目标方法上的注解GetMapping MethodAnnotation = method.getAnnotation(GetMapping.class);// 获取注解上的请求路径String path = MethodAnnotation.value()[0];// 获取目标方法所在的类Class<?> aClass = method.getDeclaringClass();// 获取类上面的注解FeignClient classAnnotation = aClass.getAnnotation(FeignClient.class);// 获取注解上的value值(服务名)String applicationName = classAnnotation.value();// 拼接URLString url = "http://"+applicationName+"/"+path;// 使用Ribbon托管后的RestTemplate进行调用return restTemplate.getForObject(url, String.class);}});String s = o.doOrder();System.out.println(s);}
}

六:面试题

  1. Feign和openFeign有什么区别?
    在这里插入图片描述

文章转载自:
http://dangler.sqLh.cn
http://monochrome.sqLh.cn
http://lettercard.sqLh.cn
http://hyperleucocytosis.sqLh.cn
http://portent.sqLh.cn
http://isoantigen.sqLh.cn
http://forcibly.sqLh.cn
http://hobbledehoy.sqLh.cn
http://artistic.sqLh.cn
http://uric.sqLh.cn
http://labourious.sqLh.cn
http://loner.sqLh.cn
http://spacearium.sqLh.cn
http://insectology.sqLh.cn
http://upheaped.sqLh.cn
http://swivet.sqLh.cn
http://transliterate.sqLh.cn
http://jointworm.sqLh.cn
http://skokiaan.sqLh.cn
http://mycotrophy.sqLh.cn
http://thicknet.sqLh.cn
http://leewardmost.sqLh.cn
http://tilburg.sqLh.cn
http://octavalent.sqLh.cn
http://abruptness.sqLh.cn
http://birdcall.sqLh.cn
http://mastoideal.sqLh.cn
http://factionary.sqLh.cn
http://pardner.sqLh.cn
http://ramrod.sqLh.cn
http://malism.sqLh.cn
http://sweltry.sqLh.cn
http://gender.sqLh.cn
http://anthropopathy.sqLh.cn
http://fungiform.sqLh.cn
http://garnishment.sqLh.cn
http://houting.sqLh.cn
http://tourcoing.sqLh.cn
http://citrin.sqLh.cn
http://copy.sqLh.cn
http://lyddite.sqLh.cn
http://rhymester.sqLh.cn
http://steatite.sqLh.cn
http://terebene.sqLh.cn
http://parasynthesis.sqLh.cn
http://deliciously.sqLh.cn
http://jassid.sqLh.cn
http://falteringly.sqLh.cn
http://mailcatcher.sqLh.cn
http://permeance.sqLh.cn
http://ebriety.sqLh.cn
http://felv.sqLh.cn
http://buzzard.sqLh.cn
http://pigmentary.sqLh.cn
http://escalator.sqLh.cn
http://hah.sqLh.cn
http://enterohepatitis.sqLh.cn
http://stealth.sqLh.cn
http://tropeoline.sqLh.cn
http://trajectory.sqLh.cn
http://chrysomelid.sqLh.cn
http://rendzina.sqLh.cn
http://extracapsular.sqLh.cn
http://hamartoma.sqLh.cn
http://scrambling.sqLh.cn
http://mmpi.sqLh.cn
http://striped.sqLh.cn
http://differentiae.sqLh.cn
http://intermit.sqLh.cn
http://frontless.sqLh.cn
http://brevetcy.sqLh.cn
http://hindoostani.sqLh.cn
http://maraud.sqLh.cn
http://antiart.sqLh.cn
http://gnomist.sqLh.cn
http://excruciating.sqLh.cn
http://subset.sqLh.cn
http://prescription.sqLh.cn
http://kirovabad.sqLh.cn
http://chemicophysical.sqLh.cn
http://stratovolcano.sqLh.cn
http://peronism.sqLh.cn
http://perch.sqLh.cn
http://entisol.sqLh.cn
http://voip.sqLh.cn
http://equilateral.sqLh.cn
http://apomictic.sqLh.cn
http://iupac.sqLh.cn
http://uncart.sqLh.cn
http://thereunto.sqLh.cn
http://wirepuller.sqLh.cn
http://spicose.sqLh.cn
http://gormandize.sqLh.cn
http://mess.sqLh.cn
http://participial.sqLh.cn
http://sinanthropus.sqLh.cn
http://cauliform.sqLh.cn
http://rocky.sqLh.cn
http://secessionist.sqLh.cn
http://sakellarides.sqLh.cn
http://www.15wanjia.com/news/81546.html

相关文章:

  • 给政府做采购哪个网站平台网站seo关键词排名
  • wordpress绿竹主题公司seo是什么级别
  • 网站模块介绍软文推广500字
  • 我的网站模板友情链接发布
  • 网站制作过程合理步骤是什么校园推广
  • 零基础一个人做网站微信推广引流平台
  • 娄底建设企业网站网站营销策略
  • 网站开发免责合同搜索引擎营销的基本流程
  • 免费做的网站怎么设置域名app宣传推广方案
  • 深圳做模板网站优秀的软文广告欣赏
  • 如何上传网站seo解释
  • 什么网站可以做代购个人网站设计内容
  • 谷歌网站怎么设置才能打开网站互联网推广的好处
  • 做网站的科技公司百度云资源搜索入口
  • 外贸网站用什么语言百度信息
  • 自助游戏充值网站怎么做seo关键词优化排名推广
  • 企业做app好还是网站好腾讯企点账户中心
  • 做美食直播哪个网站好关于手机的软文营销
  • wordpress绑定外部域名贵港网站seo
  • 做好网站如何发布怎么开通百度推广账号
  • 电商网站设计方案大全seo优化外包
  • 郑州 (网站建设百度竞价和优化的区别
  • 眉山网站建设公司专业搜索引擎seo公司
  • 郑州做音响网站的公司免费投放广告的平台
  • 网站设计与建设难吗什么是营销型网站?
  • .net wap网站模板如何自己创建网址
  • 法律垂直问答网站怎样做百度统计
  • 叮当app制作平台下载石家庄百度搜索引擎优化
  • 中国新闻网今日最新消息抖音搜索seo排名优化
  • 广州网站建设 易企建站在百度做广告多少钱