Reading Time: 9 minutes Lombok is a library expedite many tedious tasks and reduces Java source code verbosity. Lombok uses annotation processing through APT…
Reading Time: 3 minutes In Java multi-threading can be achieved in two ways. Extending Thread class Implementing Runnable interface Let’s look at them one…