0%

Hexo

How to change the blog domain adr

1. Buy new domain name

在阿里云买个新域名
aliyundns_config

点击解析,然后添加如下两条纪录,其中记录值是你的用户名.github.io。然后就解析完成了

aliyundns_config

2. config the domain in ur hexo project

1. Modify the _config.yml

打开hexo目录下的_config.yml文件,找到URL,将其指向域名地址,我的是:

1
https://gracekoo.com

2. Modify the CNAME

打开hexo/source目录下的CNAME文件(如果没有请新建,无后缀)

在其中写入你的域名地址即可

Read more »

变量和常量

关键字

keyword

Read more »

接口自动化测试开发技能

  • 测试框架:TestNG、HttpClient
  • Mock技术
  • 数据持久层框架:MyBatis
  • 持续集成工具:Jenkins
  • 接口协议相关基础知识:HTTP协议
Read more »

基本语法

元字符

元字符 说明
. 匹配除换行符以外的任意字符
\w 匹配字母、数字、下划线、汉字
\s 匹配任意的空白符
\d 匹配数字
\b 匹配单词的开始或结束
^ 匹配字符串的开始
$ 匹配字符串的结束

例:匹配有abc开头的字符串

1
\babc或^abc
Read more »