Linux curl
Linux curl
curl -fsSL www.baidu.com
curl -X POST https://updsstg.sp.com.sa/csapi/token -H 'Content-Type: application/x-www-form-urlencoded' -d 'UserName=SPAdmin&password=P@ssw0rdComplex#$@#$#@@$##@$$3##$%&grant_type=password'
查看curl 访问时间
curl -o /dev/null -s -w %{time_namelookup}::%{time_connect}::%{time_starttransfer}::%{time_total...
Linux Fish
Linux Fish
设置环境变量
set
set -g 设置全局
set -e 删除
Reference
awesome-fish-shell
Fish Plugins I Like
Linux 监控哪个进程创建文件
Linux 监控哪个进程创建文件
Reference
Is it possible to find out what program or script created a given file?
How to check which process/utility/cron created/modified a file/folder in Linux
how to find which process had created any file in Linux
How to Find Out Who is Using a File in Linux
On Linux,File created by which program?
Systemtap
Javaweb WebService
Javaweb WebService
Reference
WebService
source: _posts/web/2020-12-12-web-ser.md/#excerpt
WSDL
WSDL(Web Service Description Language) 使用XML描述Web Service API
WSDL 文档结构
元素
定义
web service 执行的操作
web service 使用的消息
web service 使用的数据类型
...
Linux Crontab
Linux Crontab
Crontab 环境说明
服务地址: /usr/lib/systemd/system/crond.service
命令: /usr/bin/crontab
配置: /etc/crontab; /var/spool/(不能删除); cron.d/; cron.daily/; cron.hourly/; cron.monthly/; cron.weekly/
日志: /var/log/cron
Crontab -e 编辑
f1 f2 f3 f4 f5 program
其中 f1 是表示分钟,f2 表示小时,f3 表示一个月份中的第几日,f4 表示月份,f5 表示一个星期中的第几天。program 表示要执行的程序。
当 f...
Java Unit Test
Java Unit Test
使用Junit
Spring Boot 单元测试
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</a...
453 post articles, 57 pages.