06 2021 档案
摘要:/** * Returns a power of two size for the given target capacity. */ static final int tableSizeFor(int cap) { int n = cap - 1; n |= n >>> 1; n |= n >>>
阅读全文
摘要:1.有的同学是继承:WebMvcConfigurationSupport 原因分析:拦截器继承的 WebMvcConfigurationSupport !以前是用 WebMvcConfigurerAdapter ,springboot 2.0 建议使用 WebMvcConfigurationSupp
阅读全文