Programming
Spring Boot Starters
Code-Review Best Practices
Code review is a crucial practice in software development. One can design and write great software, but we are humans after all. And all humans make mistakes, so another pair of eyes is always helpful.
The review process might seem straightforward, but there are useful tips to make it less painful is some cases.
Running Testcontainers On Dynamic Ports
Running integration tests locally with Docker can be challenging when fixed ports are unavailable due to conflicts. This issue is compounded in shared CI environments where multiple workers are in use. However, using testcontainers can help overcome these obstacles by enabling the startup of Docker containers that listen on random ports.
Spring Boot Configuration Best Practices
What happens when you split systems into many microservices
Moving from monolithic applications into microservices is current trend in software design. Let’s identify some pros and cons of both architectures and challenges one may face during the system transformation.
Building Data Pipeline with Kotlin Coroutines Actors
In this post I will show how to build simple data-enriching pipeline using Kotlin coroutines. I will use Channels and Actors abstractions provided by kotlinx-coroutines.
In Actors model “actors” are the universal primitives of concurrent computation. In response to a message that it receives, an actor can: make local decisions, create more actors, send more messages, and determine how to respond to the next message received. Actors may modify their own private state, but can only affect each other through messages (avoiding the need for any locks).
Let’s start with high-level definition of the pipeline:
(👤Producer) -✉️→ 📬(👤Enricher) -✉️→ 📬(👤Updater)
RawData RichData
- Pipeline will have Producer Actor, which will get some raw data from database or some mock data and will send it to pipeline for enrichment.
- Then Enricher Actor will handle raw data object and add some attributes to it.
- Finally, Updater Actor will store enriched data to the database.
For the sake of simplicity, let’s implement squaring function: we will take integers as raw data and will enrich them by squaring.
Let’s define our data model:
data class RawData(val value: Int)
Enriched data will be represented by data class RichData
:
data class RichData(val value: Int, val square: Int)
Following Actors model, we will use Kotlin Actors to represent processing units in a pipeline and Channels to communicate with Actors.
In Kotlin actors are implemented as part of kotlinx-coroutines library:
An actor is an entity made up of a combination of a coroutine, the state that is confined and encapsulated into this coroutine, and a channel to communicate with other coroutines. A simple actor can be written as a function, but an actor with a complex state is better suited for a class.
The Typical Mistake in Web-Service Design
Working on different projects I often see the same problems with application design.
Customizing REST API Error Response in Spring Boot / Spring-Security-OAuth2
Defining error format is important part of REST API design.
Spring-Boot and Spring Security provide pretty nice error handling for RESTful APIs out of the box. Although it has to be documented, especially when contract-first approach to API design is used.
It is good idea to follow some common format for error responses. But OAuth2 specification and Spring Boot format may not satisfy those requirements.
Monitoring your application locally with NewReclic
The New Relic Digital Intelligence Platform provides actionable insights to drive digital business results. You can monitor your application and infrastructure performance so you can quickly resolve issues and improve digital customer experiences.
Following instruction should help you to connect your application to NewRelic platform and customize application events sent to the platform.