摘要: 阅读全文
posted @ 2022-04-12 21:51 L1998 阅读(27) 评论(0) 推荐(0)
摘要: 1. 挂载案例: (1) (2) (3) 2.查询磁盘使用情况 (1) (2) 3.常用指令 阅读全文
posted @ 2022-04-11 23:12 L1998 阅读(37) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2022-04-11 23:00 L1998 阅读(33) 评论(0) 推荐(0)
摘要: 不同的Controller里面的GetMapping方法里用了相同的路径,但是mapper映射模糊不清,报错、 错误信息: 阅读全文
posted @ 2021-09-04 22:08 L1998 阅读(45) 评论(0) 推荐(0)
摘要: package com.sun.config; import com.sun.interceptors.TestInterceptor; import org.springframework.context.annotation.Bean; import org.springframework.co 阅读全文
posted @ 2021-08-28 23:35 L1998 阅读(56) 评论(0) 推荐(0)
摘要: 注:在SpringMVC.xml中将配置的 注释掉 阅读全文
posted @ 2021-08-28 21:34 L1998 阅读(15) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2021-08-28 15:25 L1998 阅读(24) 评论(0) 推荐(0)
摘要: 一、服务器从浏览器获取传过来的请求体 1. <form th:action="@{/testRequestBody}" method="post"> <input type="text" name="username"> <input type="text" name="password"> <in 阅读全文
posted @ 2021-08-28 15:05 L1998 阅读(555) 评论(0) 推荐(0)
摘要: 1.连续内存分配 1.1 内存碎片 1.2 分区的动态分配 (1)首次适配 (2)最优适配 (3)最差适配 减少上面3中算法中产生的内存碎片的算法: a.压缩式碎片整理 b.交换式碎片整理 2.非连续内存分配 2.1 为什么需要非连续内存分配 连续分配内存的缺点 2.2 分段 2.3 分页 2.3. 阅读全文
posted @ 2021-08-26 23:03 L1998 阅读(53) 评论(0) 推荐(0)
摘要: 1.图的表示方式 邻接矩阵: 邻接链表 2.图的遍历 2.1 广度优先 public void bfs(boolean[] isVisted,int target){ int u;//存储队列头元素 int w; System.out.println(target+" >"); isVisted[t 阅读全文
posted @ 2021-08-26 15:07 L1998 阅读(21) 评论(0) 推荐(0)