摘要:
参考: https://segmentfault.com/a/1190000006746409 https://waylau.com/mockito-quick-start/ 1.引入依赖 下面这个最新版本匹配似乎有问题 testCompile group: 'org.mockito', name: 阅读全文
摘要:
org.redisson.client.RedisResponseTimeoutException: Redis server response timeout (3000 ms) occured after 3 retry attempts. Increase nettyThreads and/o 阅读全文
摘要:
运行时报错 "CreateProcess error=206,文件名或扩展名太长" 解决方法:https://plugins.gradle.org/plugin/ua.eshepelyuk.ManifestClasspath 阅读全文
摘要:
Debouncer类 import java.util.concurrent.*; public class Debouncer { private final ScheduledExecutorService scheduler = Executors.newSingleThreadSchedul 阅读全文
摘要:
文件的自动author注释 阅读全文
摘要:
compile group: 'com.fasterxml.jackson.core', name: 'jackson-core', version: '2.11.1' compile group: 'com.fasterxml.jackson.core', name: 'jackson-datab 阅读全文
摘要:
引入依赖 compile 'org.springframework.kafka:spring-kafka' 第一套kafka配置 package myapp.kafka; import lombok.Data; import lombok.extern.slf4j.Slf4j; import org 阅读全文
摘要:
参考 https://github.com/Ryan-Miao/docker-yapi , 并使用该代码的脚本构建yapi image。 部署mongodb docker run \ --name mongod \ -p 27017:27017 \ -v /data/opt/mongodb/data 阅读全文
摘要:
开启Hystrix spring cloud dependencies Dalston版本之后,默认Feign对Hystrix的支持默认是关闭的,需要手动开启。 开启hystrix,可以选择关闭熔断或超时。 关闭熔断: 设置超时: 关闭超时: Fallback fallback 是 Hystrix 阅读全文
摘要:
[toc] Redis 3.2版本新增GEO(地理位置)。 GEO指令 GEOADD 命令: GEOADD key longitude latitude member [longitude latitude member ...] 命令描述:将指定的地理空间位置(纬度、经度、名称)添加到指定的 中。 阅读全文