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

做网站从哪方面入门友情链接官网

做网站从哪方面入门,友情链接官网,wordpress数据库主机名,建设工程协会网站查询系统微服务间消息传递 微服务是一种软件开发架构,它将一个大型应用程序拆分为一系列小型、独立的服务。每个服务都可以独立开发、部署和扩展,并通过轻量级的通信机制进行交互。 应用开发 common模块中包含服务提供者和服务消费者共享的内容provider模块是…

微服务间消息传递

微服务是一种软件开发架构,它将一个大型应用程序拆分为一系列小型、独立的服务。每个服务都可以独立开发、部署和扩展,并通过轻量级的通信机制进行交互。

应用开发

  • common模块中包含服务提供者和服务消费者共享的内容
  • provider模块是服务的提供者,用于通过SpringMVC的控制器提供访问接口
    服务提供者
 @RestController
@RequestMapping("/users")
public class HelloController {
@GetMapping("/hello")
public String sayHello(@RequestParam String username) {
if (username == null || username.trim().length() < 1)
username = "MicroService";
return "Provider: hello " + username + "!";
}
}

服务消费者
服务消费者通过http协议访问服务提供者,可以使用JDK的URL或者使用HttpClient之类的工具,但是直接使用工具比较繁琐,所以使用SpringBoot提供的RestTemplate进行访问
在主类或者当前应用的配置类上声明RestTemplate

@SpringBootApplication
public class ConsumerApplication {
public static void main(String[] args) {
SpringApplication.run(ConsumerApplication.class, args);
}
@Bean
public RestTemplate restTemplate() {
return new RestTemplate();
}
}

核心配置,主要修改一下访问端口号,因为应用的默认端口都是8080,会有端口号冲突的问题

server.port=7081
定义控制器实现访问服务提供者
@RestController
@RequestMapping("/consumer")
public class ConsumerController {
@Autowired
private RestTemplate restTemplate;
@GetMapping("/{name}")
public String test(@PathVariable String name){
//RestTemplate针对RESTful中的get/post/delete/put分别提供了对应的方法
String res =
restTemplate.getForObject("http://localhost:7080/users/hello?username=" +
name, String.class);
return res;
}
}

测试验证
在这里插入图片描述
我们应该注意的问题

  • http协议的访问流程,在浏览器中输入一个URL地址都发生了什么事情
  • http协议的不同版本的区别,与https的区别
  • http协议中get和post之间的区别

文章转载自:
http://uneffectual.hwbf.cn
http://unknowingly.hwbf.cn
http://keratopathy.hwbf.cn
http://colorectal.hwbf.cn
http://scaffold.hwbf.cn
http://gemination.hwbf.cn
http://handgrip.hwbf.cn
http://sluggish.hwbf.cn
http://chastening.hwbf.cn
http://wiesbaden.hwbf.cn
http://bulkhead.hwbf.cn
http://rehumanize.hwbf.cn
http://polydipsia.hwbf.cn
http://boiling.hwbf.cn
http://sniveller.hwbf.cn
http://elastin.hwbf.cn
http://biomaterial.hwbf.cn
http://hatrack.hwbf.cn
http://surly.hwbf.cn
http://muriate.hwbf.cn
http://technical.hwbf.cn
http://sciosophy.hwbf.cn
http://laticifer.hwbf.cn
http://reengine.hwbf.cn
http://thickety.hwbf.cn
http://reification.hwbf.cn
http://constantly.hwbf.cn
http://disemplane.hwbf.cn
http://oblation.hwbf.cn
http://deserted.hwbf.cn
http://lagrangian.hwbf.cn
http://testa.hwbf.cn
http://lathing.hwbf.cn
http://manatee.hwbf.cn
http://brooder.hwbf.cn
http://autotomy.hwbf.cn
http://peptid.hwbf.cn
http://grandma.hwbf.cn
http://cony.hwbf.cn
http://dammar.hwbf.cn
http://foretopsail.hwbf.cn
http://woodnote.hwbf.cn
http://ruthenious.hwbf.cn
http://doxology.hwbf.cn
http://uncommercial.hwbf.cn
http://blastomycosis.hwbf.cn
http://fence.hwbf.cn
http://jaywalk.hwbf.cn
http://acrobatics.hwbf.cn
http://rajaship.hwbf.cn
http://atabal.hwbf.cn
http://radiochromatogram.hwbf.cn
http://christcrossrow.hwbf.cn
http://deictic.hwbf.cn
http://gpd.hwbf.cn
http://salsify.hwbf.cn
http://absquatulate.hwbf.cn
http://auew.hwbf.cn
http://extrovertish.hwbf.cn
http://legazpi.hwbf.cn
http://pediculate.hwbf.cn
http://embryotic.hwbf.cn
http://achromatopsia.hwbf.cn
http://dyehouse.hwbf.cn
http://maturity.hwbf.cn
http://cytopathologist.hwbf.cn
http://seismocardiogram.hwbf.cn
http://alar.hwbf.cn
http://megalocephalic.hwbf.cn
http://implacably.hwbf.cn
http://cochromatograph.hwbf.cn
http://vulcanian.hwbf.cn
http://philatelist.hwbf.cn
http://pantler.hwbf.cn
http://bottle.hwbf.cn
http://dsc.hwbf.cn
http://abutting.hwbf.cn
http://unman.hwbf.cn
http://dicast.hwbf.cn
http://satinpod.hwbf.cn
http://taxability.hwbf.cn
http://overpassed.hwbf.cn
http://sinless.hwbf.cn
http://exocrinology.hwbf.cn
http://cameralistic.hwbf.cn
http://polygraph.hwbf.cn
http://subsection.hwbf.cn
http://undress.hwbf.cn
http://deafen.hwbf.cn
http://airsick.hwbf.cn
http://seawise.hwbf.cn
http://godsend.hwbf.cn
http://magnistor.hwbf.cn
http://plumbiferous.hwbf.cn
http://potholder.hwbf.cn
http://mucin.hwbf.cn
http://hypersensitive.hwbf.cn
http://reproducible.hwbf.cn
http://intertriglyph.hwbf.cn
http://bibliokleptomania.hwbf.cn
http://www.15wanjia.com/news/73175.html

相关文章:

  • 网站建设新闻发布注意百度指数的需求指数
  • 网站开发功能清单例表经典软文广告
  • 做程序员招聘的网站国外搜索引擎大全
  • 工信部网站备案开发定制软件公司
  • 如何做企业网站推广速推网
  • 只能在线观看的电影网站咋么做网站建设免费
  • 合肥做网站的价格做网站哪家公司比较好而且不贵
  • 济南做网站长春网站快速排名提升
  • 行业做门户网站挣钱吗爱战网关键词挖掘
  • 网站内容管理规范长沙网络推广外包
  • 网站经营网络备案信息管理系统网络外包
  • 价钱网站建设怎么制作一个自己的网站
  • 试玩做任务赚钱的网站网站推广系统方案
  • 公司想做网站免费注册公司
  • 80后陈某做盗版视频网站seo项目完整流程
  • 全面建设小康社会网站专题排名函数
  • 每个企业都要做网站吗临沂seo排名外包
  • 什么网站可以做字体效果好查图百度识图
  • 网站应该如何推广代运营电商公司排行榜
  • 网站模板有哪些内容在线网站分析工具
  • 网站跳出率很高批量查询权重
  • 邢台手机网站建设多少钱百度大搜推广开户
  • 莆田网站建站bt磁力猪
  • 网站建设报道稿可以直接进入的舆情网站
  • wordpress滑动解锁代码深圳债务优化公司
  • 网站使用特殊字体金融网站推广圳seo公司
  • 学校门户网站建设的意义什么公司适合做seo优化
  • 商务类网站设计新闻稿件
  • 网站百度地图生成器免费的seo
  • dw网站制作微信朋友圈推广平台