相关文章
knife4j 整合 springboot
官方文档:https://doc.xiaominfo.com/knife4j
版本兼容说明:https://doc.xiaominfo.com/docs/quick-start/start-knife4j-version
升级说明:https://doc.xiaominfo.com/docs/upgrading/upgrading-to-v4版本兼容惯关系:
springboot…
建站知识
2024/10/23 9:29:51
STM32--RTC实时时钟
文章目录 Unix时间戳时间戳转换BKPRTC简介RTC框图硬件电路RTC的注意事项RTC时钟实验工程 Unix时间戳
Unix 时间戳是从1970年1月1日(UTC/GMT的午夜)开始所经过的秒数,不考虑闰秒。
时间戳存储在一个秒计数器中,秒计数器为32位/64…
建站知识
2024/10/23 4:51:34
java项目mysql转postgresql
特殊函数 : mysql: find_in_set(?, ancestors)
postgresql: ? ANY (string_to_array(ancestors,,))
mysql: date_format(t1.oper_time, %Y-%m-%d)
postgresql: rksj::date to_char(inDate,YYYY-MM-DD)
mysql&am…
建站知识
2024/10/30 22:31:30
JavaScript Web APIs - 05 Window对象 、本地存储
Web APIs - 05 文章目录 Web APIs - 05js组成window对象定时器-延迟函数location对象navigator对象histroy对象本地存储(今日重点)localStorage(重点)sessionStorage(了解)localStorage 存储复杂数据类型 综…
建站知识
2024/10/27 23:59:18
Laravel 表单验证器的常用的2种使用方法
1、使用控制器的 validate 方法进行参数验证
场景一:前后端未分离
/*** 保存一篇新的博客文章。** param Request $request* return Response*/
public function store(Request $request)
{$this->validate($request, [title > required|unique:posts|max:2…
建站知识
2024/10/23 17:53:34
linux上vim编辑器设置
linux上vim编辑器设置 减少tab缩进、显示行号等 在vimrc(一般在/etc/vim/vimrc中)末尾添加
set helplangcn "中文帮助文档(前提是下了中文包)
syntax enable
syntax on " 自动语法高亮
set number"显示行号
colorscheme desert" 设…
建站知识
2024/10/25 16:35:38