Home United States USA — software Multiple Spring Boot Applications in the Same Project

Multiple Spring Boot Applications in the Same Project

217
0
SHARE

I frequently use the Spring Boot framework in my demos. This one shows how to achieve CQRS using two different code paths including Spring Data JPA and jOOQ
Join the DZone community and get the full member experience. I frequently use the Spring Boot framework in my demos. The latest one is no different. It shows how to achieve CQRS using two different code paths: My use case is a banking application that offers a REST layer allowing clients to call any parts. Demoing the query part is easy enough with curl as the URL is not complex: On the other hand, creating a new operation, e.g., a credit, requires passing data to curl. While it’s feasible to do that, the payload’s structure itself is complex as it’s part JSON. Hence, it’s a risk to use curl to demo the command part in front of a live audience.

Continue reading...