1、form-data: 就是http请求中的multipart/form-data,它会将表单的数据处理为一条消息,以标签为单元,用分隔符分开。既可以上传键值对,也可以上传文件。当上传的字段是文件时,会有Content-Type来说明文件类型;content-disposition,用来说明字段的 ...
分类:
Web程序 时间:
2021-06-30 18:15:55
阅读次数:
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
1. 创建一个JavaEE Servlet项目 1.1 创建一个空工程 ![](https://img2020.cnblogs.com/blog/897237/202106/897237-20210629233052753-1306294805.png) 然后填写Project Name 和 Pro ...
分类:
其他好文 时间:
2021-06-30 18:09:28
阅读次数:
0
Description:Here will use pictures and text to report traffic statistics. Total reading volume on all platforms:85653 Total playback volume on all pla ...
分类:
其他好文 时间:
2021-06-30 18:08:31
阅读次数:
0
位运算符包含: & 与、| 或、^ 异或 、~ 取反、>> 右移、<< 左移、>>> 参考地址:https://www.cnblogs.com/findbetterme/p/10787118.html 1<<31 == Integer.MIN_VALUE 原因:https://www.jianshu ...
分类:
编程语言 时间:
2021-06-30 18:03:26
阅读次数:
0
20. 有效的括号](https://leetcode-cn.com/problems/valid-parentheses/) class Solution { public boolean isValid(String s) { Map<Character, Character> map = ne ...
分类:
其他好文 时间:
2021-06-30 18:02:33
阅读次数:
0
1. 登录github并创建一个仓库 2. 安装git客户端 2.1 下载git 官网:git-scm.com/download/ 镜像:https://npm.taobao.org/mirrors/git-for-windows/?utm_source=qq&utm_medium=social&u ...
分类:
Web程序 时间:
2021-06-30 18:00:40
阅读次数:
0
学习目的: 1.了解主流的Docker仓库。 2.掌握Harbor私有仓库的搭建与使用。 3.掌握Harbor私有仓库的主从同步。 harbor的组成: proxy:Nginx前端代理,主要是分发前端页面UI访问和镜像上传和下载流量。 registry:镜像仓库,负责存储镜像文件。 核心服务:提供W ...
分类:
其他好文 时间:
2021-06-30 17:51:04
阅读次数:
0
引入 <link rel="stylesheet" href="asset/jquery.jOrgChart.css"> <script src="https://cdn.bootcss.com/jquery/3.3.1/jquery.min.js"></script><script src="as ...
分类:
其他好文 时间:
2021-06-30 17:50:18
阅读次数:
0
SQL中top使用方法 转自:https://www.cnblogs.com/wang7/archive/2012/07/09/2582891.html 1. 在编写程序中,我们可能遇到诸如查询最热门的5篇文章或返回满足条件的n条记录的情况,在SQL语言中,可以使用TOP关键字来实现。TOP关键字在 ...
分类:
数据库 时间:
2021-06-30 17:42:59
阅读次数:
0