我是靠谱客的博主 甜蜜手链,最近开发中收集的这篇文章主要介绍MockServer jar包安装,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

github地址: https://github.com/jamesdbloom/mockserver
1. org.apache.maven.plugin-tools:maven-plugin-annotations:jar:3.5.2 安装
https://mvnrepository.com/artifact/org.apache.maven.plugin-tools/maven-plugin-annotations/3.5.2
2. mockserver使用
java -Dmockserver.initializationJsonPath="test02.json" -jar mockserver-netty-5.5.1-jar-with-dependencies.jar -serverPort 1080 -logLevel INFO
test2.json内容:
[{
"httpRequest": {
"path": "/simpleFirst"},
"httpResponse": {
"body": "some first response"}},{
"httpRequest": {
"path": "/simpleSecond"},
"httpResponse": {
"body": "some second response"
}}]
3.查看进程占用的端口号:
a)netstat -ano|findstr 1099
TCP 0.0.0.0:1099 0.0.0.0:0 LISTENING 18820
TCP [::]:1099 [::]:0 LISTENING 18820
b)关闭占用端口的进程:
taskkill /f /pid 18820
错误: 无法终止 PID 为 18820 的进程。
原因: 只能强行终止这个进程(带 /F 选项)。

转载于:https://www.cnblogs.com/jiguanghover/p/10900411.html

最后

以上就是甜蜜手链为你收集整理的MockServer jar包安装的全部内容,希望文章能够帮你解决MockServer jar包安装所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(75)

评论列表共有 0 条评论

立即
投稿
返回
顶部