fiddler

urlreplace

路由拦截重定向
eg:

1
2
urlreplace 192.168.20.220/hub 192.168.21.110:8080/hub
urlreplace test.api.com localhost:8088

手机抓包

参考:https://www.cnblogs.com/yyhh/p/5140852.html

elk

组件

语法

使用双引号包起来作为一个短语搜索 “like Gecko”
返回结果中需要有http字段 exists:http
不能含有http字段 missing:http
匹配单个字符 ?
匹配0到多个字符 * 搜索结果中必须包含此项 +
不能含有此项 -

sublime

vscode

实时预览

  • Ctrl + Shift + P 调出主命令框,输入 Markdown,应该会匹配到几项 Markdown相关命令, 选择Markdown: Open Preview to the Side,就能调出实时预览框
  • 先按Ctrl + K,然后放掉,紧接着再按 v,也能调出实时预览框

关闭预览模式

单击文件名默认打开“预览模式”的Tab,单击其他文件时,会覆盖当前打开的文件。
预览模式Tab的标志为Tab名称是斜体的。
此逻辑同Sublime等各类编辑器,为默认功能。
可关闭,关闭方式为:
文件 -> 首选项 -> 设置,搜索’preview’, 关闭工作台 -> 编辑管理中的设置

1
2
Workbench > Editor > Enable Preview
Workbench > Editor > Enable Preview From Quick Open

markdown

Markdown是一种纯文本格式的标记语言。通过简单的标记语法,它可以使普通文本内容具有一定的格式。

标题

1
2
3
# 这是一级标题
## 这是二级标题
### 这是三级标题

引用

1
2
>这是引用的内容
>>这是引用的内容

分割线

1
2
---
***

图片

1
2
3
4
![图片alt](图片地址 ''图片title'')

图片alt就是显示在图片下面的文字,相当于对图片内容的解释。
图片title是图片的标题,当鼠标移到图片上时显示的内容。title可加可不加

链接

Eclipse - Java开发工具

Why Eclipse

默认配置的热部署:方法内部代码修改无需重新启动

安装设置

  • 字体设置
  • workspace 编码设置
  • installed jres
  • package explorer
  • startup and shutdown
  • compare
    • Ignore white space
    • Swap left and right

可选:

  • sonar server
  • 中文语言包

自动升级

原文链接:
https://download.eclipse.org/releases/2019-06/

格式

Maven常用功能

常用命令

1
2
3
4
5
mvn clean
mvn package
mvn install
mvn clean package -DskipTests
mvn clean package -DskipTests -U

mvn install 会将项目生成的构件安装到本地Maven仓库

mirror

阿里镜像:

1
2
3
4
5
6
<mirror>  
<id>repo2</id>
<mirrorOf>central</mirrorOf>
<name>human readable name for this mirror.</name>
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
</mirror>

nexus

maven私服

配置参考

配置文件路径(示例):C:\Users\username.m2\settings.xml

Jira

Postman

Request

headers
body

Presets

Collection

Export & Import

Environment

Mock

Test

1
2
3
4
5
6
pm.test("Response is Success", function () {
pm.response.to.have.status(200);
var jsonData = pm.response.json();
pm.expect(jsonData.success).to.eql(true);
pm.expect(jsonData.messageId).to.eql("10000");
});

Runner

Grafana

Time series

  • return column named time or time_sec (in UTC), as a unix time stamp or any sql native date data type. You can use the macros below.
  • return column(s) with numeric datatype as values
    Optional:
    • return column named metric to represent the series name.
    • If multiple value columns are returned the metric column is used as prefix.
    • If no column named metric is found the column name of the value column is used as series name
      Resultsets of time series queries need to be sorted by time.

时间选择

Your browser is out-of-date!

Update your browser to view this website correctly. Update my browser now

×