排序
Effective Java Tuesday! Utility Classes!
Effective Java Tuesday! Utility Classes!, Effective Java Review (90 Part Series) 1 Effective Java Tuesday! Let's Consider Static Factory Methods 2 Effective Java Tuesday! The Build...
Effective Java Tuesday! Singletons!
Effective Java Tuesday! Singletons!, Effective Java Review (90 Part Series) 1 Effective Java Tuesday! Let's Consider Static Factory Methods 2 Effective Java Tuesday! The Builder Pa...
Effective Java Tuesday! The Builder Pattern!
Effective Java Tuesday! The Builder Pattern!, Effective Java Review (90 Part Series) 1 Effective Java Tuesday! Let's Consider Static Factory Methods 2 Effective Java Tuesday! The B...
Effective Java Tuesday! Let’s Consider Static Factory Methods
Effective Java Tuesday! Let's Consider Static Factory Methods, Effective Java Review (90 Part Series) 1 Effective Java Tuesday! Let's Consider Static Factory Methods 2 Effective Ja...
A case study about compression and binary formats for a REST service
A case study about compression and binary formats for a REST service,A dive into the optimizations done to an API to reduce the payload from ~50mb to ~15kb, improving response time...
Weekly Links #1
Weekly Links #1, Weekly Links 2019 (14 Part Series) 1 Weekly Links #1 2 Weekly Links #2 ... 10 more parts... 3 Weekly Links #3 4 Weekly Links #4 5 Weekly Links #5 6 Weekly Links #6...
JVM architecture in a nutshell
JVM architecture in a nutshell,We write a code in our IDE, How it is being executed? How does it shows the output which we want (not always!)? This question has perplexed many begi...
Builder Design Pattern
Builder Design Pattern,What is it? Builder is a creational design pattern that is used to construct a complex object from simple objects using a step-by-step approach Real World An...
Factory Design Pattern
Factory Design Pattern,What is it? Factory Method is a creational design pattern that defines an interface or abstract class for creating an object, but allows subclasses to decide...
Singleton Design Pattern
Singleton Design Pattern,Real-World Analogy Sun of our solar system is an excellent example of the singleton pattern. All the planets in our solar system have one sun and it has a ...
A bit about marker interfaces in Java
A bit about marker interfaces in Java,Hello again! This time I would like to talk about marker interfaces in Java. Every Java developer has seen them, although not everybody is awa...
Implementing a hexagonal architecture
Implementing a hexagonal architecture,A hexagonal architecture simplifies deferring or changing technology decisions. You want to change to a different framework? Write a new adapt...