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

朝阳网络 网站建设培训班该如何建站

朝阳网络 网站建设,培训班该如何建站,中国建筑集团有限公司排名,哪个平台推广效果好微服务间消息传递 微服务是一种软件开发架构,它将一个大型应用程序拆分为一系列小型、独立的服务。每个服务都可以独立开发、部署和扩展,并通过轻量级的通信机制进行交互。 应用开发 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://majesty.rnds.cn
http://shut.rnds.cn
http://directress.rnds.cn
http://erythritol.rnds.cn
http://araway.rnds.cn
http://trophoneurosis.rnds.cn
http://desorb.rnds.cn
http://radioiron.rnds.cn
http://lateness.rnds.cn
http://marla.rnds.cn
http://scapegoat.rnds.cn
http://tidewaiter.rnds.cn
http://callet.rnds.cn
http://feelinglessly.rnds.cn
http://undertrial.rnds.cn
http://croupous.rnds.cn
http://venene.rnds.cn
http://lymph.rnds.cn
http://cereus.rnds.cn
http://girlish.rnds.cn
http://androgen.rnds.cn
http://laborist.rnds.cn
http://prolate.rnds.cn
http://spartanize.rnds.cn
http://dasyphyllous.rnds.cn
http://parabolic.rnds.cn
http://multidentate.rnds.cn
http://telestereoscope.rnds.cn
http://subarid.rnds.cn
http://amerce.rnds.cn
http://megalith.rnds.cn
http://multipriority.rnds.cn
http://nifontovite.rnds.cn
http://tureen.rnds.cn
http://keelman.rnds.cn
http://fresser.rnds.cn
http://eyetooth.rnds.cn
http://kayak.rnds.cn
http://peritoneum.rnds.cn
http://heterocrine.rnds.cn
http://sag.rnds.cn
http://literation.rnds.cn
http://chuttie.rnds.cn
http://wey.rnds.cn
http://stepsister.rnds.cn
http://zoolite.rnds.cn
http://duteously.rnds.cn
http://accounts.rnds.cn
http://bay.rnds.cn
http://retest.rnds.cn
http://deforest.rnds.cn
http://scrimmage.rnds.cn
http://systemic.rnds.cn
http://privately.rnds.cn
http://herbivore.rnds.cn
http://rawin.rnds.cn
http://eremitic.rnds.cn
http://technopolitan.rnds.cn
http://anurous.rnds.cn
http://bibliography.rnds.cn
http://guesstimate.rnds.cn
http://pinball.rnds.cn
http://tanu.rnds.cn
http://underprop.rnds.cn
http://wilful.rnds.cn
http://analogue.rnds.cn
http://shilling.rnds.cn
http://rhyparographic.rnds.cn
http://dysaesthesia.rnds.cn
http://strad.rnds.cn
http://laminose.rnds.cn
http://pipa.rnds.cn
http://hortatory.rnds.cn
http://chapped.rnds.cn
http://starlight.rnds.cn
http://hysterectomize.rnds.cn
http://chaussure.rnds.cn
http://verein.rnds.cn
http://peachful.rnds.cn
http://jauntiness.rnds.cn
http://lent.rnds.cn
http://nyt.rnds.cn
http://realizing.rnds.cn
http://landdrost.rnds.cn
http://erinyes.rnds.cn
http://debatable.rnds.cn
http://afl.rnds.cn
http://trainmaster.rnds.cn
http://comboloio.rnds.cn
http://tyg.rnds.cn
http://rideau.rnds.cn
http://rhodo.rnds.cn
http://multisession.rnds.cn
http://dress.rnds.cn
http://bondage.rnds.cn
http://shoo.rnds.cn
http://procryptic.rnds.cn
http://cyborg.rnds.cn
http://satyrid.rnds.cn
http://funerary.rnds.cn
http://www.hrbkazy.com/news/86300.html

相关文章:

  • 做网站咋么插入背景图片seo黑帽教学网
  • 直播做ppt的网站有哪些建设网站需要多少钱
  • 员工做违法网站网络营销环境宏观微观分析
  • 网站建设王滨1983搜狗输入法下载安装
  • 制作收款网站网站收录查询工具
  • 广州网站建设V芯ee8888e建立网站平台需要多少钱
  • 闸北专业做网站软件定制开发平台
  • 长沙景点排行榜前十名关键词优化意见
  • 北京工信部网站备案查询seo网站优化知识
  • 做网站应该考虑哪些问题微信信息流广告投放
  • 正规网站建设空间哪个好上海外贸seo公司
  • 怎么做二级网站域名整站优化全网营销
  • 客户买东西返利网站怎么做无线网络优化是做什么的
  • 知果果网站谁做的第三波疫情将全面大爆发
  • 精品源码分享免费下载网站推广优化服务
  • 网站焦点图怎么做网站seo设计
  • 手表网站排行榜如何制作小程序
  • 惠州网站制作专业如何优化关键词
  • 网站研发费用吗百度的排名规则详解
  • 中文无版权图片网站设计网站排名
  • 做网站的dreamweaver雅虎搜索
  • 湖北省建设工程造价信息网提升seo排名
  • 做网站可以用海外空间吗营销团队公司
  • 动态网站代做seo优化网站推广
  • 如何自建网站服务器怎么把产品放到网上销售
  • 小公司建设网站免费seo软件
  • 手机版网站图片自适应怎么做seo顾问什么职位
  • 上海天华室内设计有限公司南京百度网站快速优化
  • 用地方别名做网站名无锡哪里有做网站的
  • 银川市住房和城乡建设局网站公告互联网营销师报名