Please enable JavaScript.
Coggle requires JavaScript to display documents.
Spring Cloud Contract - Coggle Diagram
Spring Cloud Contract
-
SCC Stub Runner
-
runs in memory HTTP server stubs which represent a mock of API Producer server with all its available methods
-
SCC Plugin
generates tests, test stubs and stubs artifact
uploads contracts, stubs and project artifact to Stub Storage
-
-
Stub Storage
holds all jars produced by microservices which effectively are their mocks bud we don't need to deploy them to tes them
is a project that, simply put, helps us write Consumer-Driven Contracts (CDC).
Spring Cloud Contract gives you the certainty that the stubs that you use were created by the service that you call. Also, if you can use them, it means that they were tested against the producer’s side. In short, you can trust those stubs.
By default, Spring Cloud Contract integrates with Wiremock as the HTTP server stub.
-