首页 > 代码库 > 怎样使用Mock Server
怎样使用Mock Server
一,去这里https://github.com/dreamhead/moco
下载moco runner jar包
二,编写配置文件,并将配置文件和jar包放在同一个文件夹下(下面是config.json的内容)
[ { "request" : { "uri" : "/" }, "response" : { "text" : "mock server started" } }, { "request" : { "uri" : "/hello" }, "response" : { "text" : "kitty" } }, { "request" : { "uri" : "/itest" }, "response" : { "text" : "www.itest.info" } } ]
java -jar moco-runner-0.11.0-standalone.jar http -p 12306 -c config.json
三,1,在浏览器上面输入http://localhost:12306/ 或输入http://localhost:12306 然后按回车 显示mock server started
2,在浏览器上面输入http://localhost:12306/holle 然后按回车 显示kitty
3,在浏览器上面输入http://localhost:12306/itest 然后按回车 显示www.itest.info
上面显示的正好是config.json里面的配置文件内容
怎样使用Mock Server
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。