Thread grouping in Java

Very often, threads are an imaginary thing for programmers that you don’t always need to remember. Today I will go a little further and tell you about another new instance for many of you – ThreadGroup. If you are not too comfortable with the topic of threads, I highly recommend that you first understand the...

Read More

Accumulator in stream operations

Hello Developers! In this article I wanna show you a few information about accumulating calculations on each elements during stream process in Java. According to my latest research, the functional paradigm in Java very often uses a one popular process which is known as map-filter-reduce. I will basically focus on the third one part –...

Read More

Functional Interface in-depth

I suspect that if you have been programming in Java for some time, you have probably already used functional interfaces. Interestingly, sometimes you used them without being fully aware of it. This component appeared in Java version 8 and is now very much liked by developers. The semantics itself (and the way it is used)...

Read More

Regular expressions in programming

Regular expressions are a powerful tool for text processing (searching, modifying, parsing). In Java, starting with version 1.4, classes and methods to deal with regular expressions are available as part of the standard set of packages. In this tutorial, I will show you the basics of this issue and how to use it (with examples...

Read More

Mule Standalone Runtime without Anypoint Studio (Part 3 – building custom connector)

Welcome back! We will continue to program the ESB bus with Mule. This is the third part of our Mule tutorial without Anypoint tool. We already have an environment, a ready domain module and implemented services (which even work!). If you want to go back to the previous parts, you can find them here: https://oslyk.com/index.php/2021/09/07/mule-standalone-runtime-without-anypoint-studio/...

Read More