摘要:
说明 maven-assembly-plugin打包可以将依赖一起打入jar包 默认会自动生成并覆盖src/main/resources/META-INF/MANIFEST.MF文件,需配置指定<manifestFile>src/main/resources/META-INF/MANIFEST.MF 阅读全文
摘要:
版本信息 spring-cloud-starter-openfeign:2.1.3.RELEASE spring-boot-starter-parent:2.2.2.RELEASE 问题描述 @Service类**@Autowired了一个@FeignClient**,在**@PostConstru 阅读全文
摘要:
File - settings - Appearance & Behavior - File Colors 阅读全文
摘要:
Sentinel Dashboard源码中支持push到Sentinel Client(SpringBoot)或动态数据源(Nacos, Zookeeper, Apollo),但目前默认是push到Sentinel Client,推到动态数据源需要稍微改造一下源码 Push模式 配置 演示版本 Sp 阅读全文
摘要:
auto.offset.reset earliest 当各分区下有已提交的offset时,从提交的offset开始消费;无提交的offset时,从头开始消费 latest 当各分区下有已提交的offset时,从提交的offset开始消费;无提交的offset时,消费新产生的该分区下的数据 none 阅读全文
摘要:
| 协议 | 面向连接? | 可靠交付? | 点对点? | 拥塞避免? | 流量控制? | 面向字节or报文? | | | | | | | | | | UDP | 无连接 | 尽最大努力但不保证可靠 | 一对一、多对多、多对一、多对多 | 不支持 | 不支持 | 面向报文 | | TCP | 面向连 阅读全文
摘要:
直接调用 <sql id="headFilter"> <if test="headFilter != null and headFilter.size != 0"> <foreach collection="headFilter.entrySet()" separator=" " index="co 阅读全文
摘要:
在理论计算机科学中,CAP定理(CAP theorem),又被称作布鲁尔定理(Brewer's theorem),它指出对于一个分布式计算系统来说,不可能同时满足以下三点:[1][2] 一致性(Consistency) (等同于所有节点访问同一份最新的数据副本) 可用性(Availability)( 阅读全文
摘要:
取模%的用处 可以帮助同时存值和标记 例: 当数组nums的数值范围在[1,nums.length],但需要标记某个值,且同时要保存原值的时。 存值并标记:使用nums[i] += nums.length存值 取值:使用val = nums[i] % nums.length取值 判断标记:nums[ 阅读全文
摘要:
n & (n - 1)的用处 用处:将二进制数的最后一个1的所在位变成0 举例: 假设n = 122,二级制数为**1111010** 那么n - 1 = 121,二进制数**1111001** n & (n - 1) = 122 & 121 =1111010 & 1111001 = 1111000 阅读全文