moco搭建json api网站用于接口测试

java -jar moco-runner-1.0.0-standalone.jar http -p 12306 -c config/conf.json

配置文件

[

   {

     "request": {

     "uri": "/test1",

     "method": "POST"

     },

     "response": {

     "json": {

     "code":"200",

     "desc":" POST success"

     }

   }

   },   

   {

      "request": {

      "uri": "/test1",

      "method": "GET",

    },

      "response": {

      "json": {

      "code":"200",

      "desc":" GET success "

    }

    }

   }

]  
————————————————
版权声明:本文为CSDN博主「wangyiyice」的原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/wangyiyice/article/details/53586012

相关推荐