Skip to main content

3 posts tagged with "Spring"

Spring Boot

View All Tags

What is Spring Boot Starter

· 2 min read
Vijay Patidar
Fullstack Software Engineer

Introduction

Spring Boot starters are predefined templates or dependencies that simplify the process of setting up a Spring Boot application. They eliminate the need to manually define numerous dependencies, ensuring compatibility and reducing configuration effort.

Here’s a list of commonly used Spring Boot starters and their purposes:

What is Spring Framework

· 3 min read
Vijay Patidar
Fullstack Software Engineer

Spring Framework

The Spring Framework is a comprehensive and widely-used framework in the Java ecosystem for building enterprise-level applications. Its core feature is dependency injection (DI), which helps with the loose coupling of components, making applications easier to manage and test. Spring provides many modules for various tasks, like web development, data access, messaging, and more, making it highly modular and suitable for a variety of projects.

Build Docker Image Using Jib

· 2 min read
Vijay Patidar
Fullstack Software Engineer

Docker Build

Overview

This blog post introduces Jib, a powerful tool for building optimized Docker images for Java applications. Jib stands out by eliminating the need for a Docker daemon and expertise in Docker best practices, making it a convenient option for developers. Integrated as a plugin in Gradle or Maven projects, Jib simplifies the process of containerizing Java applications.