Sucker: Spring Boot R2DBC
Sucker: Spring Boot R2DBC 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 »
The U.S. Securities and Exchange Commission (SEC) provides a wealth of financial data through its EDGAR database. For developers and financial analysts, accessing this data programmatically can unlock powerful insights. In this post, we’ll walk through a lightweight Java application designed to fetch company submission data directly from the SEC’s public APIs using Spring Boot and Spring WebFlux.
Building a Reactive SEC EDGAR Data Fetcher with Spring Boot Read More »