Checkout
Codedraw
a low-code platform for building backends.
Menu
Home
About
Home
About
Search for Blog
All posts tagged
java
Massimo Presta
Feb 20, 2022
Find all paths in a graph
How to use Breadth First Search and a Queue to find all the available paths in a graph.
java
graph
codingchallenge
Massimo Presta
Jan 7, 2022
How to use Reactor context to share and log contextual data
Need to store Contextual data with Project Reactor? Look no further than the Reactor Context.
java
reactor
reactorseries
context
Massimo Presta
Oct 31, 2021
Search a tree or a graph in a reactive fashion
Traversing a tree recursively using Depth First or Breadth First with Project Reactor it's easier than you think.
java
reactor
reactorseries
recursion
Massimo Presta
Oct 14, 2021
Using the decorator pattern to add logic to an interface without altering its existing behaviour
An easy example on how and when to leverage the use of the Decorator Pattern.
java
pattern
decorator