10 2023 档案
摘要:/** * @author neng * @description 自定义限流注解 * @date 2020/4/8 13:15 */ @Target({ElementType.METHOD, ElementType.TYPE}) @Retention(RetentionPolicy.RUNTIME
阅读全文
摘要:多子模块构建 非核心启动类 <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <configuration>
阅读全文
摘要:1.启动Arthascurl -O https://arthas.aliyun.com/arthas-boot.jar java -jar arthas-boot.jar2.选择检测java程序3.查看dashboard 4.thread 进程号 查看 线程堆栈信息 5.jad反编译代码 6.导出d
阅读全文
摘要:1.设置bitmap setbit key 0 1 setbit key 3 1 setbit key 5 1 ->0,3,5为偏移量 ->二进制 100101 2.BITCOUNT:统计被设置的二进制位数量
阅读全文
摘要:一、索引下推 在age、sex列上建立联合索引 1.5.6之前没有索引下推,过程如下 存储引擎根据where条件中age索引字段,找到符合条件行主键ID然后二次回表查询,根据主键ID去主键索引上找到整行记录把数据返回给MySQL Server层,再根据where中sex条件,筛选出符合要求的一行记录
阅读全文
摘要:@Configurationpublic class LocalDateTimeSerializerConfig { private static final DateTimeFormatter DATE_TIME_FORMATTER = DateTimeFormatter.ofPattern("y
阅读全文
摘要:替换 SqlSessionFactory
阅读全文