摘要: 基本数据类型 参考官网 byte: 8-bit short: 16-bit int: 32-bit long: 64-bit float: 32-bit double: 64-bit boolean: 只有两个可能的值 true 和 false;这种数据类型表示一位信息,但它的“大小”并不是精确定义 阅读全文
posted @ 2021-09-24 13:23 1766Af 阅读(34) 评论(0) 推荐(0) 编辑
摘要: App public class GCApp { // 1 MB = 1024 KB, 1 KB = 1024 B(字节), 1 B=8 b(bit比特) public static final int MB = 1024 * 1024; public static void main(String 阅读全文
posted @ 2021-09-24 13:20 1766Af 阅读(95) 评论(0) 推荐(0) 编辑
摘要: 架构图 各种用途参考:https://docs.oracle.com/javase/8/docs/technotes/guides/collections/reference.html 常用 Algorithms - The Collections class contains these usef 阅读全文
posted @ 2021-09-24 13:11 1766Af 阅读(80) 评论(0) 推荐(0) 编辑
摘要: 测试代码 public class App { public static void main(String[] args) { System.out.println("123"); Map<Object, Object> hashMap = new HashMap<>(4); for (int i 阅读全文
posted @ 2021-09-24 13:02 1766Af 阅读(26) 评论(0) 推荐(0) 编辑
摘要: 类关系图 AopProxyFactory public interface AopProxyFactory { /** * Create an {@link AopProxy} for the given AOP configuration. * @param config the AOP conf 阅读全文
posted @ 2021-09-24 12:58 1766Af 阅读(28) 评论(0) 推荐(0) 编辑
摘要: 整理流程图 Cglib 生成对象 BeanUtils#instantiateClass{ return ctor.newInstance(argsWithDefaultValues) } 由上图可知,最终会调用 AppConfig 的构造方法来生成对象 阅读全文
posted @ 2021-09-24 12:55 1766Af 阅读(41) 评论(0) 推荐(0) 编辑
摘要: 档案系统文件挂接 拷贝文件到 FTP 服务器上 批量获取文件信息 分析表关系,插值 总结 拷贝文件到 FTP 服务器上 假设文件保存路径为 D:\档案文件\ 批量获取文件信息 提取文件信息保存到txt中.bat @ECHO OFF dir D:\档案文件\*.pdf /s/b | find "[部分 阅读全文
posted @ 2021-01-29 16:02 1766Af 阅读(503) 评论(0) 推荐(0) 编辑
摘要: 开发工具准备 便于更换电脑之后,可以随时翻看笔记,快速准备开发环境 概述 安装一些常用插件,以便于提高咱们的开发效率。 SwitchHosts 是用于主机管理和切换的应用程序。 Postman 是一种流行的API客户端,使开发人员可以轻松创建,共享,测试和记录API。 NodeJS VSCode I 阅读全文
posted @ 2020-12-15 17:13 1766Af 阅读(79) 评论(0) 推荐(0) 编辑
摘要: 使用 Navicat 执行 sql 脚本失败 出现 Error Code: 2006 - MySQL server has gone away 原因 当MySQL客户端或mysqld服务器收到大于max_allowed_pa​​cket字节的数据包时,它将发出ER_NET_PACKET_TOO_LA 阅读全文
posted @ 2020-12-15 16:22 1766Af 阅读(229) 评论(0) 推荐(0) 编辑
摘要: Spring MVC 拦截器的执行顺序 应用场景 假设请求 localhost:8080/ 则要求直接重定向到 localhost:8080/login ; 定义拦截器顺序 permission login 执行顺序 pre 先执行先定义的,而 post 和 after 先执行后定义的。 阅读全文
posted @ 2020-01-30 15:44 1766Af 阅读(106) 评论(0) 推荐(0) 编辑