Logging Fundamentals in Spring Boot

Introduction Logging is an essential aspect of software development, providing insights into what’s happening inside an application running in development or production. Effective logging practices help developers diagnose issues, understand application behavior, and improve performance. Spring Boot simplifies the logging process, allowing developers to focus more on building features rather than configuring logging infrastructure. This … Read more

Guide to The SOLID Principles In Java

Overview If you don’t have much time, this table captures the core of the SOLID principles: Principle Description Single Responsibility Principle (SRP) Clients should not be forced to depend on interfaces they do not use. This principle promotes the idea of small, focused interfaces instead of large, monolithic interfaces. Clients should only be exposed to … Read more

Develop the API (CRUD Wallet, Transaction)

Overview With all the setup done, let’s focus on making our app. The main purpose of the app is to let the user track their income and expenses. You’ve probably come through apps like this many times. We can spend the whole day listing all possible features an app like this can have. However, for … Read more