Alex Sergeenko

Что такое Dozer – это mapper

Иногда в проектах требуется скопировать атрибуты одного объекта в другой, временами не напрямую, а с некоторыми преобразованиями, например извлечением подстроки или наоборот, объединением нескольких полей родительского объекта в единое поле дочернего. Такие преобразования называются маппингами (mappings). Чаще всего они применяются там, где необходимо передать Java-объект без избыточных чувствительных данных. Об...

Continue reading...

Solutions Architecture Patterns

I am a huge fan of Medium.com. It contains plenty of engineering articles that altogether shed a vivid light on almost any programming area you can imagine. I’ve recently checked my daily reads and came across an interesting release announcement that introduces the Solution Architecture Patterns repository. Since this blog...

Continue reading...

Akka Streams Essentials. Part I.

The purpose of the series is to uncover some of theAkka Streams essentials. There are few major principles that lie behinds this topic. They are: Asynchronous Backpressured Incremental And potentially infinite STREAMS of elements These terms are inextricably linked to the Reactive Streams concepts: Reactive Streams is an initiative to...

Continue reading...