1.what is Spring Boot?
Spring Boot is a framework built on top of Spring Framework that simplifies the development of Java-based web applications and microservices. It eliminates the need for complex ...
Where to put validation rules, how to preserve domain purity, and how Spring helps enforce both technical and business constraints.
As stated in Spring’s documentation:
"There are pros and...
⛓️ What this series is for?
This series of articles is my personal way of documenting and sharing my understanding of the Spring Framework and Spring Boot. As a beginner with this framewo...
The @Import annotation allows you to specify which configurations your Spring application should load.You can think of this annotation as your Java class's import statements. In this case, it’s goin...
Spring Framework
It was developed by Rod Johnson in 2003. Spring framework makes the easy development of JavaEE application.
Spring is a lightweight framework. It can be thought of as a framework of f...
What is Spring Framework?
The Spring Framework is one of the most popular and powerful frameworks in the Java ecosystem, widely used in the development of enterprise, web, and microservices a...
What is @Component?
@Component is a stereotype annotation from the Spring framework that allows you to mark your classes as Spring components. These classes will be managed by Spring and will...
Kudos 👏 to reach till here.
In the previous article, we were implementing in-memory authentication in Spring security. But what if we need to connect to a datasource instead of an in-memory.
In th...
This guide provides a complete setup for deploying a traditional Spring application on WebSphere Liberty using ojdbc8 driver and Java 8, focusing on the backend components without views.
Proje...
I've always been curious about Java Reflection but never took the time to dive into it — until now. Recently, I decided to finally explore this powerful feature in depth and picked a couple of solid...