自定义404 5xx 页面,在文件夹下添加一个error的文件夹,里面添加对应的html 根据报错显示对应的html 自定义显示,在返回的信息中,浏览器返回的是json,此时包含了5个消息,时间、错误信息、堆栈、路径、状态码,只要是json信息都可以取到,通过thymeleaf里的th:text=" ...
分类:
编程语言 时间:
2021-06-30 18:28:26
阅读次数:
0
#!/usr/bin/env bash __Author__="liy" # 发送钉钉告警 function DingDing(){ curl 'https://oapi.dingtalk.com/robot/send?access_token=xxxxxxxxxxxxxxxxxxxxxxxxxxx ...
分类:
其他好文 时间:
2021-06-30 18:14:38
阅读次数:
0
@(Thread) 1.什么是进程?什么是线程? 进程是一个应用程序/软件 线程是一个进程中的执行单元/执行场景 一个进程可以启动多个线程 线程之间内存独立不共享 进程之间堆内存和方法区内存共享,栈内存独立 2.对于单核的CPU来说,实际上不存在多线程并发,而是多个线程切换的很快,让人有种并发的错觉 ...
分类:
编程语言 时间:
2021-06-30 17:39:41
阅读次数:
0
TypeError: 'generator' object is not subscriptable,错误的原因就是把不具有下标操作对象用了对象[i],所以需要+list转化,加了之后,就不会报错了 ...
分类:
其他好文 时间:
2021-06-29 15:59:51
阅读次数:
0
单片机十天征服你-第二讲-流水灯设计、蜂鸣器发声、继电器设计 ## 各大品牌官网申请免费样片 流水灯设计 //二极管闪烁 #include<reg52.h> sbit p1_1=P1^0; unsigned int a; void main() { while(1) { a=50000; p1_1= ...
分类:
其他好文 时间:
2021-06-28 21:00:26
阅读次数:
0
有人说要先安装Cython,但是我安装了Cython之后还是报这个错误,然后就换了一种安装思路 先去清华源镜像站https://opentuna.cn/pypi/web/simple/pycocotools/下载pycocotools-2.0.2.tar.gz 然后cd到pycocotools-2. ...
前序遍历: result = [] st = [root] while st: node = st.pop(-1) if node.right: st.append(node.right) if node.left: st.append(node.left) result.append(node.v ...
分类:
其他好文 时间:
2021-06-28 20:43:55
阅读次数:
0
#include <bits/stdc++.h> using namespace std; using ll = long long ; ll euler(ll n){ ll k=n; for(ll i=2;i*i<=n;i++) if(n%i==0){ k-=k/i; while(n%i==0)n ...
分类:
其他好文 时间:
2021-06-28 20:14:20
阅读次数:
0
Luogu P4926 [1007]倍杀测量者 取对数化除为减。 或者用乘积最短路。 注意图不一定连通。 #include<bits/stdc++.h> using namespace std; #define N 1000005 const double eps = 1e-12; struct g ...
分类:
其他好文 时间:
2021-06-28 19:51:46
阅读次数:
0
throw 抛异常 throw new Exception('参数只能是数字') try...catch 异常 try { //抛异常的代码 } catch (Exception $e) { echo $e->getMessage(); } 实例 /src/TestException.php (抛异 ...
分类:
其他好文 时间:
2021-06-28 19:30:58
阅读次数:
0