官网下载镜像:https://www.raspberrypi.org/ 下载刷机工具 再往下翻 Manually install an operating system image 点击:See all download options 进入下载页面: 下载ubuntu server镜像,用工具刷入 ...
分类:
其他好文 时间:
2021-05-04 15:50:51
阅读次数:
0
JProfile工具分析OOM 项目中出现OOM故障,该如何排除? 找出第几行代码出错:内存快照分析工具: Eclipse : MAT JProfile MAT、JProfile的作用: 分析Dump内存文件,快速定位内存泄露。 获得堆中的数据。 获得大的对象 ..... 首先在IDEA安装插件JP ...
分类:
其他好文 时间:
2021-05-04 15:34:31
阅读次数:
0
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="wi ...
分类:
Web程序 时间:
2021-05-04 15:33:37
阅读次数:
0
1、【file】==》【settings】==》【build,execution,deployment】==》【compiler】==》勾选【build project automatically】。 2、【ctrl+shift+a】==》【actions】==》【registry】==》勾选【co ...
分类:
其他好文 时间:
2021-05-04 15:26:55
阅读次数:
0
多重背包问题的模板题,感觉能学到背包问题这一系列这么精妙的算法实在很幸运。推荐学习背包问题的教程就是崔添翼大牛的背包九讲,之前看过,实践做题第一次,挺开心的。模板就参考kuangbin大牛的,此外,其实崔老师的伪代码看着基本上也能差不多写出来 #include <iostream> #include ...
分类:
其他好文 时间:
2021-05-04 15:22:41
阅读次数:
0
1、首先弄清楚一个概念:所谓的JVM调优,99%的情况下就是对内存中堆和方法区的调优 参考:https://blog.csdn.net/lsy_666/article/details/106737446 ...
分类:
其他好文 时间:
2021-05-04 15:21:16
阅读次数:
0
总体结构 head.payload.signature 怎么来的 head,头部。 记录了token的类型和加密算法的josn。 像是这样:{ "typ": "JWT", "alg": "HS256" }。 然后要转成base64字符串。 payload,载荷信息。 记录了用户信息的json。 然后 ...
分类:
其他好文 时间:
2021-05-04 15:16:33
阅读次数:
0
通过MultipartFile传入png图片,并通过BufferedImage进行处理。 @SneakyThrows public void picture(MultipartFile multipartFile) { //读取图片 System.out.println("正在读取..."); Bu ...
分类:
编程语言 时间:
2021-05-03 12:51:14
阅读次数:
0
一、打开nginx机器的nginx配置文件 命令: locate nginx.conf 会列出所有nginx.conf文件的地址, 一般咱们要用的nginx配置文件是/usr/local/nginx/conf/nginx.conf cd /usr/local/nginx/conf vim nginx ...
分类:
其他好文 时间:
2021-05-03 12:11:25
阅读次数:
0
crontab 用于设置定时任务,通过 cat /etc/crontab 可查看 crontab 示例: $ cat /etc/crontab SHELL=/bin/bash PATH=/sbin:/bin:/usr/sbin:/usr/bin MAILTO=root # For details s ...
分类:
其他好文 时间:
2021-05-03 11:54:27
阅读次数:
0