摘要:
转载:Springboot得到RabbitMQ队列消息的数量_坐在西半球上的博客-CSDN博客 import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.amqp.rabbit.core.Ch 阅读全文
摘要:
exchange分别和 queue1,queue2绑定 然后设置queue1的过期时间,以及过期后的routing_key, 而queue2 则根据过期后的routing_key拿到消息。 最后单独有一个消费者,消费queue2就可以了。 一,配置文件 import org.springframew 阅读全文
摘要:
写的很棒,转载一下:Rabbitmq 延迟队列实现定时任务,这才是正确的方式! - Java技术栈 - 博客园 场景 开发中经常需要用到定时任务,对于商城来说,定时任务尤其多,比如优惠券定时过期、订单定时关闭、微信支付2小时未支付关闭订单等等,都需要用到定时任务,但是定时任务本身有一个问题。 一般来 阅读全文
摘要:
http://www.pc6.com/mac/111878.html 阅读全文
摘要:
一,插件 setting -> plugins 添加第三方 二,安装 IDE Eval Reset 三,重置 Help->Eval Reset 阅读全文
摘要:
一,工具类 HttpUtil package com.tenyears.common.utils; import javax.servlet.ServletRequest; import java.io.BufferedReader; import java.io.IOException; impo 阅读全文
摘要:
build.gradle plugins { id "com.github.shalousun.smart-doc" version "2.2.2" } smartdoc { configFile = file("src/main/resources/smart-doc.json") } resou 阅读全文
摘要:
无法找到公用架包中,aop注解 先看一下模块: 一,公用架包(com.common.aop) 定义注解: package com.common.aop; import java.lang.annotation.*; /** * @description : * @auther Tyler * @da 阅读全文
摘要:
参考:https://blog.csdn.net/qq_43948440/article/details/110877496 一,通用方法 public <U> Page<U> findPage(String sql,Map<String, Object> params, Pageable page 阅读全文
摘要:
yml my_map: test1: val1 test2: val2 properties my_map={test1:"val1",test2:"val2"} 读取 @Value("#{${my_map}}") private Map<String,String> my_map; 阅读全文