While we are hearing tips on Clean code, the most common tip is maintaining SRP while writing class or methods, in a broader scope Module/Package/Service/API.But Irony is, SRP is the most powerful but obscured principle in the Design toolbox, this throws...
Home » All posts
Clean code Tips 2:: Use Top-down Approach While converting complex logic into Methods.
in
cleancodetips,
design pattern java
- on November 22, 2020
- No comments

To know How to write clean Method, is the stepping stone of writing proper Clean code, your already know common things like method should be clean, readable, giving proper names, I will not write on this I will focus on the flow of the method, there...
Clean code Tips1:: Urge to put comments? refrain to do it.
in
cleancodetips,
code smell,
design pattern,
java
- on November 16, 2020
- No comments

While you are writing code, assume you are writing a novel and your fellow coders is a reader of your novel, so anytime you think you have to put comment that means something wrong, you cant express yourselves through code. A real clean code does not...
Effective Advice on Spring @Async : Final Part .
in
java interview,
spring,
spring boot,
SpringAsync
- on May 04, 2019
- No comments

In my previous articles, I discussed the Spring Async concept
and How to use it effectively. If you want to revisit, below are the
links, Also for new visitors I recommend, please go through previous
parts after reading this one.
Part...