类的加载过程 JVM中的类加载过程分为三步: 装载: Load 链接: Link 初始化: Initialize 装载 查找并加载类的二进制数据 链接 验证: 确保加载类的正确性 准备: 为类的静态变量分配内存,将将这些静态变量初始化为默认值 解析: 将类中的符号引用转换为直接引用 之所以要有验证的 ...
分类:
编程语言 时间:
2021-06-28 20:53:57
阅读次数:
0
CosId 通用、灵活、高性能的分布式 ID 生成器 介绍 CosId 旨在提供通用、灵活、高性能的分布式系统 ID 生成器。 目前提供了俩大类 ID 生成器:SnowflakeId (单机 TPS 性能:409W JMH 基准测试)、RedisIdGenerator (单机 TPS 性能(步长 1 ...
分类:
其他好文 时间:
2021-06-28 19:10:52
阅读次数:
0
//region 1.0 接收 Form 表单数据/** * Post:PostMapping 传 Body 参数 form-data * */@PostMapping(value = "/book/h11")public String addHeader(@RequestParam("name") ...
分类:
编程语言 时间:
2021-06-28 18:18:45
阅读次数:
0
How to quickly check installed software versions Posted on March 31, 2020by Adam the 32-bit Aardvark There are situations where you need to check whet ...
分类:
其他好文 时间:
2021-06-25 17:10:48
阅读次数:
0
一、相同点 1.两者都拥有成员函数、公有和私有部分 2.任何可以使用class完成的工作,同样可以使用struct完成 二、不同点 1.两者中如果不对成员不指定公私有,struct默认是公有的,class则默认是私有的 2.class默认是private继承,而struct模式是public继承 三 ...
分类:
编程语言 时间:
2021-06-22 18:40:07
阅读次数:
0
数据库中的字段public class User{ private int id; private String name; private String password; }测试查出来password为null//select id,name,pwd from mybatis.user wher ...
分类:
其他好文 时间:
2021-06-20 18:22:57
阅读次数:
0
DI依赖注入 set方式注入【重点】 依赖注入:set注入 依赖:bean对象的创建依赖于容器 注入:bean对象中的所有属性,由容器来注入 【环境搭建】 1.真实测试对象 2.复杂类型 @Data public class Student { private String name; privat ...
分类:
其他好文 时间:
2021-06-18 19:53:42
阅读次数:
0
public class WeightProcessor { private final Map<Integer, List<String>> map = new HashMap<>(); //保存权重值和地址 private final Integer[] weight; //保存权重值,用于负载 ...
分类:
其他好文 时间:
2021-06-16 18:35:22
阅读次数:
0
基础环境 Windows 10系统 Anaconda3 Python3.9(Anaconda带) 步骤 下载文件包: https://zh.d2l.ai/d2l-zh-1.1.zip 解压后,修改 enviroment.yml ,添加 - pip 在树根 修改到清华镜像,并刷新。教程在:https: ...
分类:
其他好文 时间:
2021-06-15 18:23:34
阅读次数:
0
mybatis plus技巧,插入数据时,怎么插入自定义的id信息,不走自增策略 在实体类中: @TableId(value = "id", type = IdType.AUTO) private Integer id; 改成 @TableId(value = "id", type = IdType ...
分类:
其他好文 时间:
2021-06-15 18:18:15
阅读次数:
0