您的位置:首页 > 游戏 > 游戏 > 在线商城网站模板_企业所得税政策最新2024税率_seo顾问公司_广州市新闻发布

在线商城网站模板_企业所得税政策最新2024税率_seo顾问公司_广州市新闻发布

2024/12/26 21:05:48 来源:https://blog.csdn.net/Tresson_A/article/details/144722711  浏览:    关键词:在线商城网站模板_企业所得税政策最新2024税率_seo顾问公司_广州市新闻发布
在线商城网站模板_企业所得税政策最新2024税率_seo顾问公司_广州市新闻发布

使用rabbitmq实现异步解耦

使用步骤:

1、pom依赖

<dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-amqp</artifactId>
</dependency>

2、yml配置文件

spring:rabbitmq:host: 127.0.0.1port: 5672username: guestpassword: guestvirtual-host: /

3、发送消息

/** 测试rabbitmq的使用* */
@Autowired
private RabbitTemplate rabbitTemplate;@RequestMapping("/send")
public boolean send(String message) {//现在我要阻塞5000ms/5秒钟// 如果代码写在控制层此时执行结果是5020毫秒   把一些耗时操作放在监听者中 异步解耦,接口可以先返回数据,避免接口响应时间过长try {Thread.sleep(5000);} catch (InterruptedException e) {throw new RuntimeException(e);}// 队列名称(一定要记得创建队列simple.queue  在FanoutConfig.class中)String queueName = "simple.queue";// 消息// 发送消息rabbitTemplate.convertAndSend(queueName, message);return true;
}

4、接受消息

package cn.xue.user.controller;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) {//如果把一些耗时操作放到这里 rabbitmq会异步执行
//        try {
//            Thread.sleep(5000);
//        } catch (InterruptedException e) {
//            throw new RuntimeException(e);
//        }System.out.println("spring 消费者接收到消息:【" + msg + "】");}}

5、创建队列,必须有这个配置类,否则会报错

package cn.xue.user.controller;import org.springframework.amqp.core.Queue;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
/*
*  创建队列
* */
@Configuration
public class FanoutConfig {/*** 创建第1个队列  simple.queue*/@Beanpublic Queue fanoutQueue1(){return new Queue("simple.queue");}}

结论

上面的  Thread.sleep(5000); 是为了模拟耗时操作

如果把  Thread.sleep(5000);写在send中,请看执行时长(5474ms)

如果把  Thread.sleep(5000);写在监听者中,请看执行时长(130ms)

 这样的话即实现了异步执行,也会减少代码之间的耦合度

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com