Posts
All the articles I've posted.
Build shadow JAR for Gradle plugin with Kotlin and Kotlin DSL.
Posted on:November 12, 2022 (6 min read)Let's look at the example of the Shadow Gradle plugin settings for building the Gradle plugin with package relocation.
Save multiline value in Etcd from CLI
Posted on:November 5, 2022 (2 min read)Official documentation only has basic example for saving short value so it might be confusing to find a way to save long multiline value. Let's find out how we can do it.
Running local Kotlin playground
Posted on:October 30, 2022 (8 min read)We can run small Kotlin code fragments online with the Kotlin Playground. It is also widely used in the official Kotlin documentation web-site. But we can also run it locally and customize.
Spring RequestContextHolder and Thread Local Inheritance
Posted on:February 3, 2022 (22 min read)Spring allows exposing HTTP request-related data outside of the Controller class with the help of a thread-bound RequestAttributes object. But real-world applications do not process the request with a single thread. Can we use RequestAttributes with code that is running inside the thread pool?