moco的基本安装与使用

一、下载jar包
地址:moco下载地址下载最大的那个jar包

二、配置json

[
	{
		"description": "this is no parameter request",
		"request": {
			"uri": "/demo",
			"method":"get"
		},
		"response": {
			"text": "this is no parameter request"
		}
	}
]

三、运行cmd命令
1、jar的路径可以为绝对路径
2、-p后跟随的是端口号
3、-c后跟随的是配置文件路径

java -jar ./moco-runner-0.11.0-standalone.jar http -p 8888 -c startupGet.json

四、访问路径

localhost:8888/demo

你可能感兴趣的:(moco)