sir in this market where everyone is desperate to sell their courses you on other hand giving all ur great knowledge for years for free.....In this compititive market middle class students are always struggling to increase skills.....I pray to God for good to you and yor family for ur help for us.Please continue your great work making projects and everything necessay for us in TH-cam.Thank you sir
It's always good to learn from you. Have been following you for your insights and experience regarding Java, Spring and life as a whole. Happy to learn something new each day.
I was facing issues in creating and running tests and aggrate coverage ...etc in spring maven multi module application. looking for some tutorial. but some how opened this video. after intro itself, i was felt like why i was still working multi module project instead of spring modulith. I have learned it now and will implement it. Thank you so much for the explanation. A great Video.!!
I am glad you liked the video. I have created a new sample application using Spring Modulith with more features. Check out if you are interested. github.com/sivaprasadreddy/spring-modular-monolith
This is a trimmed down version of the BookStore application developed as part of my Spring Boot Microservices Course Spring Boot MicroServices: th-cam.com/play/PLuNxlOYbv61g_ytin-wgkecfWDKVCEDmB.html
Hi Siva, Thank you for all your efforts, you are providing best quality education. Can you please make a video explaining how to structure a project with Hexagonal architecture especially with Spring boot? I read few books and articles and understand the theoretical part of it, but hard to find a good example (or use case) where we an apply this architectural pattern to develop an application using Spring boot. Each article I have read has their own way to setup the application structure, bit confused on whats the best way!
I am glad you like my videos. I have mostly worked on data-centric applications throughout my career. I am not a big fan of Clean/Hexagonal/Onion/Ports&Adapters Architecture, especially for data-centric applications. The key advertised benefit of those architectural styles is the ability to isolate infrastructure concerns from core domain logic. In most of the business applications there will be low-to-medium complex business logic but heavily relies on infrastructure of databases, message brokers, external API integrations, etc. For such applications, the ability to test core domain logic isolating the infrastructure is not very beneficial. Rather I love to eliminate the unnecessary indirections(interfaces) and be able to test the logic with infrastructure components using tools like Testcontainers. For more on this see github.com/sivaprasadreddy/tomato-architecture
Thank you very much for your videos and articles!. I hope you never stop making them. Just one thing, the link to the code repository doesn't work. Thanks Siva!
Thank you very much. I did move all my TH-cam video sample projects into one repository github.com/sivaprasadreddy/sivalabs-youtube-code-samples. You can find this video code at github.com/sivaprasadreddy/sivalabs-youtube-code-samples/tree/main/spring-boot-modulith-demo.
th-cam.com/video/FkP2aZiBrhg/w-d-xo.html a Java interface is by definition always public, and it's methods are by default public (you might have private methods since JDK9 though)
sir in this market where everyone is desperate to sell their courses you on other hand giving all ur great knowledge for years for free.....In this compititive market middle class students are always struggling to increase skills.....I pray to God for good to you and yor family for ur help for us.Please continue your great work making projects and everything necessay for us in TH-cam.Thank you sir
100% agreed . Siva is a blessing for many .
It's always good to learn from you. Have been following you for your insights and experience regarding Java, Spring and life as a whole. Happy to learn something new each day.
Thanks Siva, very useful. Definitely need try in own project to get hands on with Spring Modulith.
I was facing issues in creating and running tests and aggrate coverage ...etc in spring maven multi module application. looking for some tutorial. but some how opened this video. after intro itself, i was felt like why i was still working multi module project instead of spring modulith. I have learned it now and will implement it. Thank you so much for the explanation. A great Video.!!
I am glad you liked the video.
I have created a new sample application using Spring Modulith with more features. Check out if you are interested.
github.com/sivaprasadreddy/spring-modular-monolith
Great video! Please make one how to break a module into a microservice (i.e. deploy it as separate process).
Good tutorial, keep it up 😊
Very useful video sir
May I know which intelij theme is that? Its super cool
Happy for you back ❤🎉🎉
Hi the simple project seems very intresting to me do you have a video were you are building this project without
modulith
This is a trimmed down version of the BookStore application developed as part of my Spring Boot Microservices Course Spring Boot MicroServices: th-cam.com/play/PLuNxlOYbv61g_ytin-wgkecfWDKVCEDmB.html
@@sivalabs Thanks
very very helpful 😍
Thank you
Hi Siva, Thank you for all your efforts, you are providing best quality education. Can you please make a video explaining how to structure a project with Hexagonal architecture especially with Spring boot? I read few books and articles and understand the theoretical part of it, but hard to find a good example (or use case) where we an apply this architectural pattern to develop an application using Spring boot. Each article I have read has their own way to setup the application structure, bit confused on whats the best way!
I am glad you like my videos.
I have mostly worked on data-centric applications throughout my career.
I am not a big fan of Clean/Hexagonal/Onion/Ports&Adapters Architecture, especially for data-centric applications.
The key advertised benefit of those architectural styles is the ability to isolate infrastructure concerns from core domain logic. In most of the business applications there will be low-to-medium complex business logic but heavily relies on infrastructure of databases, message brokers, external API integrations, etc. For such applications, the ability to test core domain logic isolating the infrastructure is not very beneficial. Rather I love to eliminate the unnecessary indirections(interfaces) and be able to test the logic with infrastructure components using tools like Testcontainers.
For more on this see github.com/sivaprasadreddy/tomato-architecture
Thank you very much for your videos and articles!. I hope you never stop making them. Just one thing, the link to the code repository doesn't work. Thanks Siva!
Thank you very much. I did move all my TH-cam video sample projects into one repository github.com/sivaprasadreddy/sivalabs-youtube-code-samples. You can find this video code at github.com/sivaprasadreddy/sivalabs-youtube-code-samples/tree/main/spring-boot-modulith-demo.
Thanks!
Thank you so much for your support 🙂
Why u write sql query by youself instead of delegate that to JPA?
Instead of loading the JPA entity and mapping it to a DTO, I directly fetch it as DTO (Record) using constructor expression.
good good
why does your folder icons look different from mine?
I have installed "Atom Material Icons" plugin which shows nice colorful icons.
@@sivalabs awesome thanks!
th-cam.com/video/FkP2aZiBrhg/w-d-xo.html a Java interface is by definition always public, and it's methods are by default public (you might have private methods since JDK9 though)
It is confusing and prone to make mistakes 😔
Microservices are not usefull for every company. Often it is way better to keep the monolith.