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

免费网站模版建设如何自己做框架开发网站

免费网站模版建设,如何自己做框架开发网站,wordpress open social,公司网站模板 网盘下载Spring AMQP是基于RabbitMQ封装的一套模板#xff0c;并且还利用SpringBoot对其实现了自动装配#xff0c;使用起来非常方便。Spring AMQP官方地址 Spring AMQP提供了三个功能#xff1a; 自动声明队列、交换机及其绑定关系基于注解的监听器模式#xff0c;异步接收消息封…Spring AMQP是基于RabbitMQ封装的一套模板并且还利用SpringBoot对其实现了自动装配使用起来非常方便。Spring AMQP官方地址 Spring AMQP提供了三个功能 自动声明队列、交换机及其绑定关系基于注解的监听器模式异步接收消息封装了RabbitTemplate工具用于发送消息 1.Basic Queue简单队列模型 在父工程mq-demo中引入依赖 !--AMQP依赖包含RabbitMQ-- dependencygroupIdorg.springframework.boot/groupIdartifactIdspring-boot-starter-amqp/artifactId /dependency1.1.消息发送 首先配置MQ地址在publisher服务的application.yml中添加配置 spring:rabbitmq:host: 192.168.1.111 # 主机名port: 5672 # 端口virtual-host: / # 虚拟主机username: dcxuexi # 用户名password: 123456 # 密码然后在publisher服务中编写测试类SpringAmqpTest并利用RabbitTemplate实现消息发送 package com.dcxuexi.mq.spring;import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.amqp.rabbit.core.RabbitTemplate; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.boot.test.context.SpringBootTest; import org.springframework.test.context.junit4.SpringRunner;RunWith(SpringRunner.class) SpringBootTest public class SpringAmqpTest {Autowiredprivate RabbitTemplate rabbitTemplate;Testpublic void testSimpleQueue() {// 队列名称String queueName simple.queue;// 消息String message hello, spring amqp!;// 发送消息rabbitTemplate.convertAndSend(queueName, message);} }1.2.消息接收 首先配置MQ地址在consumer服务的application.yml中添加配置 spring:rabbitmq:host: 192.168.1.111 # 主机名port: 5672 # 端口virtual-host: / # 虚拟主机username: dcxuexi # 用户名password: 123456 # 密码然后在consumer服务的com.dcxuexi.mq.listener包中新建一个类SpringRabbitListener代码如下 package com.dcxuexi.mq.listener;import org.springframework.amqp.rabbit.annotation.RabbitListener; import org.springframework.stereotype.Component;Component public class SpringRabbitListener {RabbitListener(queues simple.queue)public void listenSimpleQueueMessage(String msg) throws InterruptedException {System.out.println(spring 消费者接收到消息【 msg 】);} }1.3.测试 启动consumer服务然后在publisher服务中运行测试代码发送MQ消息 2.WorkQueue Work queues也被称为Task queues任务模型。简单来说就是让多个消费者绑定到一个队列共同消费队列中的消息。 当消息处理比较耗时的时候可能生产消息的速度会远远大于消息的消费速度。长此以往消息就会堆积越来越多无法及时处理。 此时就可以使用work模型多个消费者共同处理消息处理速度就能大大提高了。 2.1.消息发送 这次我们循环发送模拟大量消息堆积现象。 在publisher服务中的SpringAmqpTest类中添加一个测试方法 /*** workQueue* 向队列中不停发送消息模拟消息堆积。*/ Test public void testWorkQueue() throws InterruptedException {// 队列名称String queueName simple.queue;// 消息String message hello, message_;for (int i 0; i 50; i) {// 发送消息rabbitTemplate.convertAndSend(queueName, message i);Thread.sleep(20);} }2.2.消息接收 要模拟多个消费者绑定同一个队列我们在consumer服务的SpringRabbitListener中添加2个新的方法 RabbitListener(queues simple.queue) public void listenWorkQueue1(String msg) throws InterruptedException {System.out.println(消费者1接收到消息【 msg 】 LocalTime.now());Thread.sleep(20); }RabbitListener(queues simple.queue) public void listenWorkQueue2(String msg) throws InterruptedException {System.err.println(消费者2........接收到消息【 msg 】 LocalTime.now());Thread.sleep(200); }注意到这个消费者sleep了1000秒模拟任务耗时。 2.3.测试 启动ConsumerApplication后在执行publisher服务中刚刚编写的发送测试方法testWorkQueue。 可以看到消费者1很快完成了自己的25条消息。消费者2却在缓慢的处理自己的25条消息。 也就是说消息是平均分配给每个消费者并没有考虑到消费者的处理能力。这样显然是有问题的。 2.4.能者多劳 在spring中有一个简单的配置可以解决这个问题。我们修改consumer服务的application.yml文件添加配置 spring:rabbitmq:listener:simple:prefetch: 1 # 每次只能获取一条消息处理完成才能获取下一个消息2.5.总结 Work模型的使用 多个消费者绑定到一个队列同一条消息只会被一个消费者处理通过设置prefetch来控制消费者预取的消息数量 3.发布/订阅 发布订阅的模型如图 可以看到在订阅模型中多了一个exchange角色而且过程略有变化 Publisher生产者也就是要发送消息的程序但是不再发送到队列中而是发给交换机Exchange交换机。一方面接收生产者发送的消息。另一方面知道如何处理消息例如递交给某个特别队列、递交给所有队列、或是将消息丢弃。到底如何操作取决于Exchange的类型。Exchange有以下3种类型 Fanout广播将消息交给所有绑定到交换机的队列Direct定向把消息交给符合指定routing key的队列Topic通配符把消息交给符合routing pattern路由模式 的队列 Consumer消费者与以前一样订阅队列没有变化Queue消息队列也与以前一样接收消息、缓存消息。 Exchange交换机只负责转发消息不具备存储消息的能力因此如果没有任何队列与Exchange绑定或者没有符合路由规则的队列那么消息会丢失 4.Fanout Fanout英文翻译是扇出我觉得在MQ中叫广播更合适。 在广播模式下消息发送流程是这样的 1 可以有多个队列2 每个队列都要绑定到Exchange交换机3 生产者发送的消息只能发送到交换机交换机来决定要发给哪个队列生产者无法决定4 交换机把消息发送给绑定过的所有队列5 订阅队列的消费者都能拿到消息 我们的计划是这样的 创建一个交换机dcxuexi.fanout类型是Fanout创建两个队列fanout.queue1和fanout.queue2绑定到交换机dcxuexi.fanout 4.1.声明队列和交换机 Spring提供了一个接口Exchange来表示所有不同类型的交换机 在consumer中创建一个类声明队列和交换机 package com.dcxuexi.mq.config;import org.springframework.amqp.core.Binding; import org.springframework.amqp.core.BindingBuilder; import org.springframework.amqp.core.FanoutExchange; import org.springframework.amqp.core.Queue; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration;Configuration public class FanoutConfig {/*** 声明交换机* return Fanout类型交换机*/Beanpublic FanoutExchange fanoutExchange(){return new FanoutExchange(dcxuexi.fanout);}/*** 第1个队列*/Beanpublic Queue fanoutQueue1(){return new Queue(fanout.queue1);}/*** 绑定队列和交换机*/Beanpublic Binding bindingQueue1(Queue fanoutQueue1, FanoutExchange fanoutExchange){return BindingBuilder.bind(fanoutQueue1).to(fanoutExchange);}/*** 第2个队列*/Beanpublic Queue fanoutQueue2(){return new Queue(fanout.queue2);}/*** 绑定队列和交换机*/Beanpublic Binding bindingQueue2(Queue fanoutQueue2, FanoutExchange fanoutExchange){return BindingBuilder.bind(fanoutQueue2).to(fanoutExchange);} }4.2.消息发送 在publisher服务的SpringAmqpTest类中添加测试方法 Test public void testFanoutExchange() {// 队列名称String exchangeName dcxuexi.fanout;// 消息String message hello, everyone!;rabbitTemplate.convertAndSend(exchangeName, , message); }4.3.消息接收 在consumer服务的SpringRabbitListener中添加两个方法作为消费者 RabbitListener(queues fanout.queue1) public void listenFanoutQueue1(String msg) {System.out.println(消费者1接收到Fanout消息【 msg 】); }RabbitListener(queues fanout.queue2) public void listenFanoutQueue2(String msg) {System.out.println(消费者2接收到Fanout消息【 msg 】); }4.4.总结 交换机的作用是什么 接收publisher发送的消息将消息按照规则路由到与之绑定的队列不能缓存消息路由失败消息丢失FanoutExchange的会将消息路由到每个绑定的队列 声明队列、交换机、绑定关系的Bean是什么 QueueFanoutExchangeBinding 5.Direct 在Fanout模式中一条消息会被所有订阅的队列都消费。但是在某些场景下我们希望不同的消息被不同的队列消费。这时就要用到Direct类型的Exchange。 在Direct模型下 队列与交换机的绑定不能是任意绑定了而是要指定一个RoutingKey路由key消息的发送方在 向Exchange发送消息时也必须指定消息的 RoutingKey。Exchange不再把消息交给每一个绑定的队列而是根据消息的Routing Key进行判断只有队列的Routingkey与消息的 Routing key完全一致才会接收到消息 案例需求如下 利用RabbitListener声明Exchange、Queue、RoutingKey 在consumer服务中编写两个消费者方法分别监听direct.queue1和direct.queue2 在publisher中编写测试方法向dcxuexi.direct发送消息 5.1.基于注解声明队列和交换机 基于Bean的方式声明队列和交换机比较麻烦Spring还提供了基于注解方式来声明。 在consumer的SpringRabbitListener中添加两个消费者同时基于注解来声明队列和交换机 RabbitListener(bindings QueueBinding(value Queue(name direct.queue1),exchange Exchange(name dcxuexi.direct, type ExchangeTypes.DIRECT),key {red, blue} )) public void listenDirectQueue1(String msg){System.out.println(消费者接收到direct.queue1的消息【 msg 】); }RabbitListener(bindings QueueBinding(value Queue(name direct.queue2),exchange Exchange(name dcxuexi.direct, type ExchangeTypes.DIRECT),key {red, yellow} )) public void listenDirectQueue2(String msg){System.out.println(消费者接收到direct.queue2的消息【 msg 】); }5.2.消息发送 在publisher服务的SpringAmqpTest类中添加测试方法 Test public void testSendDirectExchange() {// 交换机名称String exchangeName dcxuexi.direct;// 消息String message 红色警报日本乱排核废水导致海洋生物变异惊现哥斯拉;// 发送消息rabbitTemplate.convertAndSend(exchangeName, red, message); }5.3.总结 描述下Direct交换机与Fanout交换机的差异 Fanout交换机将消息路由给每一个与之绑定的队列Direct交换机根据RoutingKey判断路由给哪个队列如果多个队列具有相同的RoutingKey则与Fanout功能类似 基于RabbitListener注解声明队列和交换机有哪些常见注解 QueueExchange 6.Topic 6.1.说明 Topic类型的Exchange与Direct相比都是可以根据RoutingKey把消息路由到不同的队列。只不过Topic类型Exchange可以让队列在绑定Routing key 的时候使用通配符 Routingkey 一般都是有一个或多个单词组成多个单词之间以”.”分割例如 item.insert 通配符规则 #匹配一个或多个词 *匹配不多不少恰好1个词 举例 item.#能够匹配item.spu.insert 或者 item.spu item.*只能匹配item.spu ​ 图示 解释 Queue1绑定的是china.# 因此凡是以 china.开头的routing key 都会被匹配到。包括china.news和china.weatherQueue2绑定的是#.news 因此凡是以 .news结尾的 routing key 都会被匹配。包括china.news和japan.news 案例需求 实现思路如下 并利用RabbitListener声明Exchange、Queue、RoutingKey 在consumer服务中编写两个消费者方法分别监听topic.queue1和topic.queue2 在publisher中编写测试方法向dcxuexi.topic发送消息 6.2.消息发送 在publisher服务的SpringAmqpTest类中添加测试方法 /*** topicExchange*/ Test public void testSendTopicExchange() {// 交换机名称String exchangeName dcxuexi.topic;// 消息String message 喜报胜!;// 发送消息rabbitTemplate.convertAndSend(exchangeName, china.news, message); }6.3.消息接收 在consumer服务的SpringRabbitListener中添加方法 RabbitListener(bindings QueueBinding(value Queue(name topic.queue1),exchange Exchange(name dcxuexi.topic, type ExchangeTypes.TOPIC),key china.# )) public void listenTopicQueue1(String msg){System.out.println(消费者接收到topic.queue1的消息【 msg 】); }RabbitListener(bindings QueueBinding(value Queue(name topic.queue2),exchange Exchange(name dcxuexi.topic, type ExchangeTypes.TOPIC),key #.news )) public void listenTopicQueue2(String msg){System.out.println(消费者接收到topic.queue2的消息【 msg 】); }6.4.总结 描述下Direct交换机与Topic交换机的差异 Topic交换机接收的消息RoutingKey必须是多个单词以 **.** 分割Topic交换机与队列绑定时的bindingKey可以指定通配符#代表0个或多个词*代表1个词 7.消息转换器 之前说过Spring会把你发送的消息序列化为字节发送给MQ接收消息的时候还会把字节反序列化为Java对象。 只不过默认情况下Spring采用的序列化方式是JDK序列化。众所周知JDK序列化存在下列问题 数据体积过大有安全漏洞可读性差 7.1.测试默认转换器 我们修改消息发送的代码发送一个Map对象 Test public void testSendMap() throws InterruptedException {// 准备消息MapString,Object msg new HashMap();msg.put(name, Jack);msg.put(age, 21);// 发送消息rabbitTemplate.convertAndSend(simple.queue,, msg); }停止consumer服务 发送消息后查看控制台 7.2.配置JSON转换器 显然JDK序列化方式并不合适。我们希望消息体的体积更小、可读性更高因此可以使用JSON方式来做序列化和反序列化。 在publisher和consumer两个服务中都引入依赖 dependencygroupIdcom.fasterxml.jackson.dataformat/groupIdartifactIdjackson-dataformat-xml/artifactIdversion2.9.10/version /dependency配置消息转换器。 在启动类中添加一个Bean即可 Bean public MessageConverter jsonMessageConverter(){return new Jackson2JsonMessageConverter(); }
文章转载自:
http://www.morning.nzkc.cn.gov.cn.nzkc.cn
http://www.morning.bbgr.cn.gov.cn.bbgr.cn
http://www.morning.rydbs.cn.gov.cn.rydbs.cn
http://www.morning.iuibhkd.cn.gov.cn.iuibhkd.cn
http://www.morning.yhljc.cn.gov.cn.yhljc.cn
http://www.morning.dwmtk.cn.gov.cn.dwmtk.cn
http://www.morning.cbnlg.cn.gov.cn.cbnlg.cn
http://www.morning.fndfn.cn.gov.cn.fndfn.cn
http://www.morning.gnhsg.cn.gov.cn.gnhsg.cn
http://www.morning.ndlww.cn.gov.cn.ndlww.cn
http://www.morning.ttaes.cn.gov.cn.ttaes.cn
http://www.morning.ryxbz.cn.gov.cn.ryxbz.cn
http://www.morning.synkr.cn.gov.cn.synkr.cn
http://www.morning.qjdqj.cn.gov.cn.qjdqj.cn
http://www.morning.xnyfn.cn.gov.cn.xnyfn.cn
http://www.morning.csnch.cn.gov.cn.csnch.cn
http://www.morning.dkqyg.cn.gov.cn.dkqyg.cn
http://www.morning.mbpzw.cn.gov.cn.mbpzw.cn
http://www.morning.qbmjf.cn.gov.cn.qbmjf.cn
http://www.morning.rbkml.cn.gov.cn.rbkml.cn
http://www.morning.c7629.cn.gov.cn.c7629.cn
http://www.morning.lfjmp.cn.gov.cn.lfjmp.cn
http://www.morning.rdsst.cn.gov.cn.rdsst.cn
http://www.morning.rkkh.cn.gov.cn.rkkh.cn
http://www.morning.ymjrg.cn.gov.cn.ymjrg.cn
http://www.morning.kzxlc.cn.gov.cn.kzxlc.cn
http://www.morning.pnmnl.cn.gov.cn.pnmnl.cn
http://www.morning.zqcdl.cn.gov.cn.zqcdl.cn
http://www.morning.fjfjm.cn.gov.cn.fjfjm.cn
http://www.morning.xkyfq.cn.gov.cn.xkyfq.cn
http://www.morning.clybn.cn.gov.cn.clybn.cn
http://www.morning.fwjfh.cn.gov.cn.fwjfh.cn
http://www.morning.lyldhg.cn.gov.cn.lyldhg.cn
http://www.morning.pzbjy.cn.gov.cn.pzbjy.cn
http://www.morning.frfpx.cn.gov.cn.frfpx.cn
http://www.morning.jzdfc.cn.gov.cn.jzdfc.cn
http://www.morning.nlzpj.cn.gov.cn.nlzpj.cn
http://www.morning.qxmys.cn.gov.cn.qxmys.cn
http://www.morning.snnb.cn.gov.cn.snnb.cn
http://www.morning.ygwbg.cn.gov.cn.ygwbg.cn
http://www.morning.kqpsj.cn.gov.cn.kqpsj.cn
http://www.morning.blqsr.cn.gov.cn.blqsr.cn
http://www.morning.pclgj.cn.gov.cn.pclgj.cn
http://www.morning.ryrgx.cn.gov.cn.ryrgx.cn
http://www.morning.wrtw.cn.gov.cn.wrtw.cn
http://www.morning.rdzgm.cn.gov.cn.rdzgm.cn
http://www.morning.zpfr.cn.gov.cn.zpfr.cn
http://www.morning.kzrbn.cn.gov.cn.kzrbn.cn
http://www.morning.bsrp.cn.gov.cn.bsrp.cn
http://www.morning.dpnhs.cn.gov.cn.dpnhs.cn
http://www.morning.mxlmn.cn.gov.cn.mxlmn.cn
http://www.morning.ffksr.cn.gov.cn.ffksr.cn
http://www.morning.rntyn.cn.gov.cn.rntyn.cn
http://www.morning.fpjxs.cn.gov.cn.fpjxs.cn
http://www.morning.dgsr.cn.gov.cn.dgsr.cn
http://www.morning.pfbx.cn.gov.cn.pfbx.cn
http://www.morning.jypqx.cn.gov.cn.jypqx.cn
http://www.morning.mdjtk.cn.gov.cn.mdjtk.cn
http://www.morning.kwjyt.cn.gov.cn.kwjyt.cn
http://www.morning.gdljq.cn.gov.cn.gdljq.cn
http://www.morning.ljglc.cn.gov.cn.ljglc.cn
http://www.morning.wgrm.cn.gov.cn.wgrm.cn
http://www.morning.hydkd.cn.gov.cn.hydkd.cn
http://www.morning.thntp.cn.gov.cn.thntp.cn
http://www.morning.lyjwb.cn.gov.cn.lyjwb.cn
http://www.morning.qmtzq.cn.gov.cn.qmtzq.cn
http://www.morning.yhwyh.cn.gov.cn.yhwyh.cn
http://www.morning.cybch.cn.gov.cn.cybch.cn
http://www.morning.kghhl.cn.gov.cn.kghhl.cn
http://www.morning.dwrbn.cn.gov.cn.dwrbn.cn
http://www.morning.c7495.cn.gov.cn.c7495.cn
http://www.morning.qjrjs.cn.gov.cn.qjrjs.cn
http://www.morning.mqtzd.cn.gov.cn.mqtzd.cn
http://www.morning.jxdhc.cn.gov.cn.jxdhc.cn
http://www.morning.wfkbk.cn.gov.cn.wfkbk.cn
http://www.morning.pzlhq.cn.gov.cn.pzlhq.cn
http://www.morning.wbyqy.cn.gov.cn.wbyqy.cn
http://www.morning.pbbzn.cn.gov.cn.pbbzn.cn
http://www.morning.jxjrm.cn.gov.cn.jxjrm.cn
http://www.morning.fwcjy.cn.gov.cn.fwcjy.cn
http://www.tj-hxxt.cn/news/282595.html

相关文章:

  • 保险购买网站上海建站宝盒
  • 个人网站模板素材建筑证书兼职网站
  • yahoo不收录我的网站内购券网站开发
  • 有做学历在网站能查的到的杭州网页设计培训机构
  • 哪个网站可以查企业信息网站开发的ui设计
  • 点样做网站企业网站和信息化建设制度
  • 网站首页title怎么修改wordpress 图片分离
  • 购买网站建设需要注意赤壁市建设局网站
  • 公司企业网站有哪些wordpress写文章怎么加媒体
  • 群晖 建站 Wordpresswordpress顶部提示
  • 上海工信部网站备案下载免费网络软件
  • 网站登录模板甘肃网站快速排名策划
  • 北京网站排名优化我找伟宏篷布我做的事ko家的网站
  • 云数据库可以做网站吗wordpress ality
  • 鞍山 网站建设个人怎么注册个体工商户
  • 网站运营维护工作内容php网站开发视频网站
  • 微信公众号免费制作成微网站购物网站开发用什么软件
  • django商城网站开发的功能logo设计欣赏
  • 付网站首期合同款怎么做分录做网站前后端的发布流程
  • 企业网站的必要性没封的网址免费兄弟
  • 深圳住房和建设局官网网站建设银行论坛网站
  • 黄山网站建设jidela网站建设公司广东
  • 社保门户网站建设方案怎么将自己做的网站上线
  • 天津智能网站建设公众号小程序免费开通
  • 天津营销网站建设联系方式厦门网站免费制作
  • 淮安淮阴网站建设网站开发环境包括什么
  • 网站建设必要性网站留言板样式
  • 如何判断网站是不是自适应那些网站做推广
  • 计算机专业的会学怎么做网站吗wordpress 分页 美化
  • 信融网站建设网站开发去掉wordpress顶部