From fded1ddf9af71929797743dd15ecef20ccf2f501 Mon Sep 17 00:00:00 2001 From: Michael Schnell Date: Tue, 31 Dec 2019 09:33:22 +0100 Subject: [PATCH] Added readme --- spring-boot/shared/README.md | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 spring-boot/shared/README.md diff --git a/spring-boot/shared/README.md b/spring-boot/shared/README.md new file mode 100644 index 0000000..05d69d2 --- /dev/null +++ b/spring-boot/shared/README.md @@ -0,0 +1,4 @@ +# cqrs4j-spring-example-shared +Code shared between Spring Boot command and query microservice. + +> :warning: Normally you should **not** share code this way between your command and query microservices. A shared-nothing approach is a good practice for microservices (See for example [Don't Share Libraries among Microservices](https://phauer.com/2016/dont-share-libraries-among-microservices/)). You can simply copy the content of this module directly into your command and projects.