相关文章
【SpringBoot】使用 HandlerInterceptor 拦截器进行用户登录验证? 为什么不使用 SpingAOP ?
文章目录 前言一、为什么不使用 SpringAOP ?1, 需求分析2, SpringAOP 能实现吗? 二、使用 HandlerInterceptor1, 实现 HandlerInterceptor 接口2, 将自定义拦截器加入到系统配置 三、HandlerInterceptor 实现原理源码分析 总结 前言 各位读者好, 我是小陈, 这是我的个人主页,…
编程日记
2024/12/22 18:31:34
AliOS-Things引入
目录
一、简介 1.1 硬件抽象层
1.2 AliOS-Things内核 rhino
编辑 1.3 AliOS-Things组件
二、如何进行AliOS-Things开发
三、安装环境
安装python pip git
修改pip镜像源
安装aos-cube 一、简介 AliOS-Things是阿里巴巴公司推出的致力于搭建云端一体化LoT软件。AliOS-…
编程日记
2024/12/22 18:07:24
prometheus + grafana进行服务器资源监控
在性能测试中,服务器资源是值得关注一项内容,目前,市面上已经有很多的服务器资 源监控方法和各种不同的监控工具,方便在各个项目中使用。
但是,在性能测试中,究竟哪些指标值得被关注呢?
监控有…
编程日记
2024/12/18 7:01:24
常用的时间段的时间戳
获取 昨天这个时间的时间戳 Calendar calendar Calendar.getInstance(); //当前时间calendar.add(Calendar.DAY_OF_YEAR,-1); Long dd calendar.getTime().getTime()/1000;System.out.println(dd);计算今天0点的时间戳 Long time System.currentTimeMillis(); //当前…
编程日记
2024/12/16 17:40:44
【js】清理器注册表功能 FinalizationRegistry
ES2021 引入了清理器注册表功能 FinalizationRegistry,用来指定目标对象被垃圾回收机制清除以后,所要执行的回调函数。
首先,新建一个注册表实例。
const registry new FinalizationRegistry(heldValue > {// ....
});上面代码中&#…
编程日记
2024/12/13 16:35:11
linux上vim编辑器设置
linux上vim编辑器设置 减少tab缩进、显示行号等 在vimrc(一般在/etc/vim/vimrc中)末尾添加
set helplangcn "中文帮助文档(前提是下了中文包)
syntax enable
syntax on " 自动语法高亮
set number"显示行号
colorscheme desert" 设…
编程日记
2024/12/20 12:05:27
node.js 简单实验 创建一个简单的web服务
概要:用一个最简单是例子感受一下node.js 的能力
1.代码
var http require("http")
http.createServer(function (request, response) { response.writeHead(200, {Content-Type: text/plain}); response.end(Hello World\n);
}).listen(8081);
cons…
编程日记
2024/12/20 21:35:48
NTP服务器时间配置
简介
ntp服务器是一个同步时间都服务器。
开启ntpd
1.查看状态(可以看到状态为:inactive,也就是没有启动ntp服务)
[rootlocalhost]$ systemctl status ntpd
● ntpd.service - Network Time ServiceLoaded: loaded (/usr/lib/…
编程日记
2024/12/17 16:44:16