摘要: 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) 编辑
摘要: 参考文献 参考博文 #优先第一篇 https://www.cnblogs.com/j-star/p/6133580.html http://www.linuxidc.com/Linux/2014-10/108013.htm 如有侵权,请联系删除 核心步骤,就是选好虚拟机配置后,选择打开电源时进入固件 阅读全文
posted @ 2023-08-17 18:02 咔咔皮卡丘 阅读(5) 评论(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 咔咔皮卡丘 阅读(156) 评论(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 咔咔皮卡丘 阅读(19) 评论(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 咔咔皮卡丘 阅读(362) 评论(0) 推荐(0) 编辑
摘要: 参考文献 https://blog.csdn.net/forezp/article/details/70305336 如有侵权,请联系删除 关于redis实现分布式锁,redis官方推荐使用redlock。 结语 学习没有捷径,一步一个脚印! 阅读全文
posted @ 2023-08-17 16:14 咔咔皮卡丘 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 1.实例化 package com.imooc.miaosha.redis; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.context.annotation.Be 阅读全文
posted @ 2023-08-17 16:11 咔咔皮卡丘 阅读(53) 评论(0) 推荐(0) 编辑
摘要: 配置 #redis配置 redis: cluster: nodes: - 127.0.0.1:9000 - 127.0.0.1:9001 - 127.0.0.1:9002 - 127.0.0.1:9003 - 127.0.0.1:9004 - 127.0.0.1:9005 timeout: 6000 阅读全文
posted @ 2023-08-17 16:08 咔咔皮卡丘 阅读(72) 评论(0) 推荐(0) 编辑
摘要: 第一步:安装一个redis,要能正常跑起来(其实只是为了证明你会安安装而已) 第二步:几个节点就创建几个目录(要求最少3个master,如果想有一个从节点的话,那就最少6个节点),然后将redis 目录下的redis-server 及 redis.windows.conf copy到这些目录并修改配 阅读全文
posted @ 2023-08-17 16:07 咔咔皮卡丘 阅读(53) 评论(0) 推荐(0) 编辑
摘要: 一、依赖 <dependency> <groupId>org.quartz-scheduler</groupId> <artifactId>quartz</artifactId> <version>2.3.0</version> </dependency> 二、一个类(实现job接口的类),三个实例 阅读全文
posted @ 2023-08-17 15:38 咔咔皮卡丘 阅读(35) 评论(0) 推荐(0) 编辑
摘要: 1.@Value方式 https://blog.csdn.net/zhayuyao/article/details/78553417 private static String CCBIPADDRESS; @Value("${ccb.ip.address}") public void setCCBI 阅读全文
posted @ 2023-08-17 15:37 咔咔皮卡丘 阅读(1026) 评论(0) 推荐(0) 编辑
摘要: 1、引入httpclient <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> <version>4.5.2</version> </dependency> 2、 阅读全文
posted @ 2023-08-17 15:33 咔咔皮卡丘 阅读(43) 评论(0) 推荐(0) 编辑
摘要: 结语 学习没有捷径,一步一个脚印! 阅读全文
posted @ 2023-08-17 15:29 咔咔皮卡丘 阅读(12) 评论(0) 推荐(0) 编辑
摘要: 该特性是保证事务是否开启,业务逻辑是否使用同一个事务的保证。当事务在传播过程中会受其影响。其传播特性包括: 1、Propagation.REQUIRED 方法被调用时自动开启事务,在事务范围内使用则使用同一个事务,否则开启新事务。常用!!! 2、Propagation.REQUIRES_NEW 无论 阅读全文
posted @ 2023-08-17 15:26 咔咔皮卡丘 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 参考文献 https://www.cnblogs.com/fashflying/p/6908028.html 如有侵权,请联系删除 一、配置: 1.依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spri 阅读全文
posted @ 2023-08-17 15:10 咔咔皮卡丘 阅读(94) 评论(0) 推荐(0) 编辑
摘要: 参考文献 https://blog.csdn.net/Bb15070047748/article/details/124954080 如有侵权,请联系删除 正文 Mybatis的缓存机制 2.1 缓存介绍 像大多数的持久化框架一样, Mybatis 也提供了缓存策略,通过缓存策略来减少数据库的查询次 阅读全文
posted @ 2023-08-17 10:12 咔咔皮卡丘 阅读(5331) 评论(0) 推荐(0) 编辑
摘要: 结语 学习没有捷径,一步一个脚印! 阅读全文
posted @ 2023-08-17 10:10 咔咔皮卡丘 阅读(7) 评论(0) 推荐(0) 编辑