摘要: 一、什么是Spring Cloud 1、功能:配置管理、服务注册、服务发现、断路器、智能路由、负载均衡、服务间调用、微代理、一次性令牌、思维导图模板、全局锁、领导选举、分布式消息、分布式会话、集群状态 2、Spring Cloud 与 Spring Boot 的关系 Spring Boot 是构建 阅读全文
posted @ 2023-08-18 10:20 咔咔皮卡丘 阅读(12) 评论(0) 推荐(0) 编辑
摘要: 一、spring boot 初始化工程 1、网址:https://start.spring.io 二、Gradle 安装(绿色版) 1、windows下 -下载:http://downloads.gradle.org/distributions/gradle-3.5-bin.zip -解压: -配置 阅读全文
posted @ 2023-08-18 10:06 咔咔皮卡丘 阅读(55) 评论(0) 推荐(0) 编辑
摘要: 一、lunix系统(centos7) 系统:http://mirrors.aliyun.com/centos/7/isos/x86_64/CentOS-7-x86_64-DVD-1708.iso 软件源:http://mirrors.aliyun.com 软件源配置:https://opsx.ali 阅读全文
posted @ 2023-08-18 09:56 咔咔皮卡丘 阅读(209) 评论(0) 推荐(0) 编辑
摘要: 1、官网:http://jmeter.apache.org/ 2、下载:http://jmeter.apache.org/download_jmeter.cgi 3、用户手册:http://jmeter.apache.org/usermanual/index.html 补:另外redis-bench 阅读全文
posted @ 2023-08-17 18:09 咔咔皮卡丘 阅读(8) 评论(0) 推荐(0) 编辑
摘要: if (request.getHeader("x-requested-with") != null && request.getHeader("x-requested-with").equalsIgnoreCase("XMLHttpRequest")) { out.print("该请求是 AJAX 阅读全文
posted @ 2023-08-17 18:06 咔咔皮卡丘 阅读(18) 评论(0) 推荐(0) 编辑
摘要: 注意:重启或者从睡眠中唤醒虚拟机后,要systemctl restart network 前期准备 下载:http://www.oracle.com/technetwork/cn/server-storage/virtualbox/downloads/index.html 安装:https://bl 阅读全文
posted @ 2023-08-17 17:58 咔咔皮卡丘 阅读(149) 评论(0) 推荐(0) 编辑
摘要: 源码 https://gitee.com/learning_demo/sharding-jdbc 1.读写分离(主从)例子分支:readwrite-splitting 2.分库分表例子分支:sharding-databases-tables 1.分库分表+读写分离例子分支:sharding-read 阅读全文
posted @ 2023-08-17 17:11 咔咔皮卡丘 阅读(9) 评论(0) 推荐(0) 编辑
摘要: 1、添加依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-amqp</artifactId> </dependency> 2、添加配置 官方配置https://doc 阅读全文
posted @ 2023-08-17 16:43 咔咔皮卡丘 阅读(7) 评论(0) 推荐(0) 编辑
摘要: 1、配置类 @Configuration public class MQConfig { public static final String QUEUE = "queue"; public static final String TOPIC_QUEUE1 = "topic.queue1"; pub 阅读全文
posted @ 2023-08-17 16:40 咔咔皮卡丘 阅读(16) 评论(0) 推荐(0) 编辑
摘要: 参考文献 版本对照表 https://www.rabbitmq.com/which-erlang.html 安装过程中遇到问题相关博客 http://blog.csdn.net/qq315737546/article/details/53105418 http://blog.csdn.net/lee 阅读全文
posted @ 2023-08-17 16:34 咔咔皮卡丘 阅读(342) 评论(0) 推荐(0) 编辑