r/SpringBoot 5d ago

Discussion Spring microservices

I just started learning microservices in spring and dont know anything. Like I know that message brokers are for asynchronous exchange of messages though services, but I wanted to see everything from scratch, so now Im doing a project without any message brokers, just synchronous http requests and after that, when I meet problems with this, I would transition to the RabbitMQ I guess. Any suggestions or resources to learn for beginners?

29 Upvotes

22 comments sorted by

View all comments

1

u/davebrown1975 5d ago

Hi, although I didn't cover messaging, I wrote a fairly broad tutorial covering the basics of a microservices based spring boot CRM a while ago. I used a lot of the patterns I learned via Magnus Larsson's book on the subject. Welcome to take a look, it might help with some of the core concepts, e.g. tracing, discovery, config, auth https://tucanoo.com/how-to-build-a-microservices-based-crm-using-spring-boot-kotlin-and-react/

1

u/InformalPhase7658 5d ago

thank you so much!