ForkJoin & CombineLatest
ForkJoin & CombineLatest Read More »
You have below scenario:Spring boot app has a jpa layer, make store procedure call, the app received one request with a parameter array (contains 100 parameters used to pass to jpa call), the stored procedure can only process one parameter at a time, the service layer has a loop logic to loop through parameters array
Spring Transactions Management Read More »
This is a classic architectural design question in Spring and Java development. Both approaches have their merits, and the “best” choice often depends on the specific context, the component’s role, and future expectations. Let’s break down the pros and cons of each: 1. Interface-Oriented Programming with Spring In this approach, you define an interface (e.g.,
Interface-Oriented vs Direct Service Programming Read More »