01-Jenkins自动化部署项目 参考资料(官网):https://www.jenkins.io/zh/ 一、安装 jenkins 在你的本地电脑或者linux服务器上下载安装jenkins:jenkins下载地址:https://jenkins.io/ 下载网站的war包版本就好了 下载完后把它部署到你的tomcat上运行:放到tomcat的webapps目录下,启动tomcat(windows下双击startup.ba 2019-09-07 09_调试测试 > 04_自动部署 #Jenkins #自动化部署
01-win批处理命令大全 hosts - github12345678910111213141516171819202122232425262728293031323334353637383940# github140.82.114.9 codeload.github.com140.82.114.3 github.com199.232.69.194 github.global.ssl.fastly.net52.217.13 2019-06-15 01_操作系统 > 05_Windows #windows #hosts #github
02-Junit 5架构和使用 参考资料: Junit 5 用户手册 JUnit 5 简介,第 1 部分:JUnit 5 Jupiter API JUnit 5 简介,第 2 部分:JUnit 5 Vintage 和 JUnit Jupiter 扩展模型 0. JUnit 4 用法1234567891011121314151617import org.junit.Before;import org.junit.Test;i 2019-05-30 09_调试测试 > 02_单元测试 #测试 #Junit5
03-RocketMQ 延迟消息 如何保证顺序消费? RabbitMQ:一个Queue对应一个Consumer即可解决。 RocketMQ:hash(key)%队列数 Kafka:hash(key)%分区数 如何实现延迟消费? RabbitMQ:两种方案死信队列 + TTL引入RabbitMQ的延迟插件 RocketMQ:天生支持延时消息。 Kafka:步骤如下专门为要延迟的消息创建一个Topic新建一个消费者去消费这个Topi 2019-05-27 08_框架技术 > 14_RocketMQ #SpringCloudAlibaba #RocketMQ
03-RocketMQ 延迟消息 官网:https://rocketmq.apache.org/ 参考资料:https://github.com/apache/rocketmq 1. 定时(延迟)消息RocketMQ 不支持任意时间自定义的延迟消息,仅支持内置预设值的延迟时间间隔的延迟消息。 18个级别延迟消息,预设值的延迟时间间隔为:1s、 5s、 10s、 30s、 1m、 2m、 3m、 4m、 5m、 6m、 7m、 8 2019-05-23 08_框架技术 > 14_RocketMQ #SpringCloudAlibaba #RocketMQ
02-RocketMQ 使用demo 官网:https://rocketmq.apache.org/ 参考资料:https://github.com/apache/rocketmq 1. 下载启动1.1 下载解压https://rocketmq.apache.org/dowloading/releases/ 选择 Binary 的 zip 压缩包下载,如 rocketmq-all-x.x.x-bin-release.zip 解压到一 2019-05-22 08_框架技术 > 14_RocketMQ #SpringCloudAlibaba #RocketMQ
01-RocketMQ 消息队列 官网:https://rocketmq.apache.org/ 参考资料:https://github.com/apache/rocketmq 1. 介绍阿里开源消息中间件 RocketMQ RocketMQ作为一款纯java、分布式、队列模型的开源消息中间件,支持事务消息、顺序消息、批量消息、定时消息、消息回溯等。 1.1 RocketMQ 特点 支持发布/订阅(Pub/S 2019-05-22 08_框架技术 > 14_RocketMQ #SpringCloudAlibaba #RocketMQ
4H搞定Dubbo 官网地址:http://dubbo.apache.org/zh-cn/ GitHub源码地址:https://github.com/apache/dubbo 1. 概述1.1 简介Dubbo: 2011.10,阿里开源Java RPC框架;2012年,当当、网易、中国人寿、海尔等采用… Apache Dubbo:一款**高性能 Java RPC 框架**。 RPC:Remote Procedu 2019-03-02 08_框架技术 > 11_Dubbo #SpringCloudAlibaba #Dubbo
WebSocket聊天室实战 参考资料-后端:https://developer.ibm.com/zh/articles/j-lo-WebSocket/ 参考资料-前端:https://www.runoob.com/html/html5-websocket.html 在线测试-地址:http://www.websocket-test.com/ 1. 简介WebSocket 是 HTML5 开始提供的一种在单个 TCP 连接上 2019-03-02 08_框架技术 > 12_WebSocket #WebSocket
03-RabbitMQ 创建交换器+队列+路由 官网:https://www.rabbitmq.com/#getstarted 中文教程网:http://rabbitmq.mr-ping.com RabbitMQ 创建 exchange、queue、routing 1. web管理页面上创建这里只是为了展示, 在实际开发中一般在消费端通过注解来自动创建。 1, 创建 Exchange 2, 创建 queue 3, 配置 routi 2018-09-24 08_框架技术 > 07_RabbitMQ #RabbitMQ