摘要:
1.实例化 package com.imooc.miaosha.redis; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.context.annotation.Be 阅读全文
摘要:
配置 #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 阅读全文
摘要:
第一步:安装一个redis,要能正常跑起来(其实只是为了证明你会安安装而已) 第二步:几个节点就创建几个目录(要求最少3个master,如果想有一个从节点的话,那就最少6个节点),然后将redis 目录下的redis-server 及 redis.windows.conf copy到这些目录并修改配 阅读全文
摘要:
一、依赖 <dependency> <groupId>org.quartz-scheduler</groupId> <artifactId>quartz</artifactId> <version>2.3.0</version> </dependency> 二、一个类(实现job接口的类),三个实例 阅读全文
摘要:
1.@Value方式 https://blog.csdn.net/zhayuyao/article/details/78553417 private static String CCBIPADDRESS; @Value("${ccb.ip.address}") public void setCCBI 阅读全文
摘要:
1、引入httpclient <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> <version>4.5.2</version> </dependency> 2、 阅读全文
摘要:
结语 学习没有捷径,一步一个脚印! 阅读全文
摘要:
该特性是保证事务是否开启,业务逻辑是否使用同一个事务的保证。当事务在传播过程中会受其影响。其传播特性包括: 1、Propagation.REQUIRED 方法被调用时自动开启事务,在事务范围内使用则使用同一个事务,否则开启新事务。常用!!! 2、Propagation.REQUIRES_NEW 无论 阅读全文
摘要:
参考文献 https://www.cnblogs.com/fashflying/p/6908028.html 如有侵权,请联系删除 一、配置: 1.依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spri 阅读全文
摘要:
结语 学习没有捷径,一步一个脚印! 阅读全文