码迷,mamicode.com
首页 > 其他好文 > 详细

怎样使用Mock Server

时间:2016-11-23 06:48:35      阅读:342      评论:0      收藏:0      [点我收藏+]

标签:one   文件夹   使用   server   host   ges   stand   编写   ons   

一,去这里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

标签:one   文件夹   使用   server   host   ges   stand   编写   ons   

原文地址:http://www.cnblogs.com/111testing/p/6091460.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!