Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要一个可以模拟我的 REST 端点的独立服务器。要求是: - 需要独立运行 - 需要能够根据传入的请求消息以特定的响应消息进行响应
WireMock 会是这种模拟的最佳工具吗?
是的,只要您知道预期的请求和响应应该是什么,您就可以使用 WireMock 来做到这一点。您将需要创建多个映射(为每个预期的请求/响应对)并为每个请求的任何唯一元素放置一个匹配器,以便您可以将它们区分开来。
事实上,从 Wiremock 2.0 开始,您可以将请求解组为一个对象,并从类内部动态执行所有数据操作/准备响应。我用Java做到了。