Articles by Tag #springboot

Browse our collection of articles on various topics related to IT technologies. Dive in and explore something new!

Understanding concepts in Event Driven Architectures (EDA)

Event Driven Architecture has become a very popular choice in recent times for developing highly...

Learn More 140 2Apr 2

Keycloak and Spring Boot: The Ultimate Guide to Implementing Single Sign-On

Introduction: Single Sign-On (SSO) has become an essential feature in modern web...

Learn More 78 12Oct 30 '24

Java Performance Optimization Techniques

Hello 👋 You can find the full post on Java Performance Optimization Techniques 1....

Learn More 50 0Oct 3 '24

Spring Boot 3 application on AWS Lambda - Part 10 Measuring cold and warm starts with Spring Cloud Function

Introduction In the part 8 we introduce concept behind Spring Cloud function and in the ...

Learn More 49 1Aug 12 '24

Building a RESTful API with Spring Boot: A Comprehensive Guide to @RequestMapping

@RequestMapping is a versatile annotation in Spring that can be used to map HTTP requests to handler...

Learn More 47 7Jul 1 '24

Top 10 IntelliJ IDEA Plugins to Boost Development Efficiency in 2024

In day-to-day development, IntelliJ IDEA is the go-to tool for many developers. To further enhance...

Learn More 44 5Dec 18 '24

Basic RAG app with Spring AI, Docker and Ollama

Large Language models are becoming smaller and better over time, and, today, models like Llama3.1...

Learn More 34 1Aug 1 '24

Managing Application Properties with Spring Boot Profiles: A Best Practices Guide

Managing environment-specific configurations can be challenging, but Spring Boot simplifies this...

Learn More 31 0Jul 27 '24

Spring Boot + Redis: A Beginner-Friendly Guide to Supercharging Your App’s Performance

** With Redis, your Spring Boot app can become faster and handle more traffic without breaking a...

Learn More 30 0Dec 17 '24

Personalize Your Application Startup with a Custom Banner

In this blog post, I'll show you how to customize the banner that appears when you start your Spring...

Learn More 28 2Sep 19 '24

New requestMatchers in Spring Security 6

In Spring Security 6, the requestMatchers methods have replaced the deprecated antMatchers,...

Learn More 27 0Jul 14 '24

Maven Made Simple: Building Java Projects with Ease

An easy-to-follow guide for automating builds with Maven Maven is an essential tool for...

Learn More 27 4Sep 13 '24

Eureka and Consul - Service Discovery Tools

Two common service discovery tools that you might have implemented in a Spring Boot microservice...

Learn More 26 7Sep 4 '24

Spring Boot Cheat Sheet

Spring Boot Cheat Sheet ...

Learn More 25 1Nov 16 '24

Spring Boot Avengers: Uniting Spring Data JDBC and PostgreSQL's JSONB

TL;DR When working with Spring Data JDBC and a jsonb database column, you may face...

Learn More 24 1Oct 1 '24

5 helpful plugins for IntelliJ IDEA: Enhance your Spring Boot and Java development experience

For any Spring Boot developer, two primary goals are maximum productivity and high-quality code. One...

Learn More 23 1Jul 11 '24

Java Trends to Watch for in 2024: Key Developments Shaping the Future of Development

As Java continues to evolve, developers are paying close attention to emerging trends that can shape...

Learn More 22 0Oct 28 '24

Designing a Scalable Architecture - with Some Spring Boot Examples

Scalability is a critical factor when designing modern backend systems. A well-structured Spring Boot...

Learn More 22 0Mar 5

From JVM to Native Compilation with Spring Boot: What It Means and Why It Matters

Traditionally, Java developers have followed the same standard flow: write Java code, compile it to...

Learn More 21 2Jun 4

Spring Boot REST API - Returning Response in JSON Format

Spring Boot REST API - Returning Response in JSON Format Introduction In this...

Learn More 21 0Feb 23

Spring Boot 3 application on AWS Lambda - Part 9 Develop application with Spring Cloud Function

Introduction In the part 8 we introduced concepts behind Spring Cloud Function (AWS). In...

Learn More 20 0Jul 8 '24

🚀 WebClient vs RestTemplate vs FeignClient: A Comparative Guide

When building web applications in Java, choosing the right HTTP client library is crucial for...

Learn More 20 1Aug 22 '24

Different Ways to Send a File as a Response in Spring Boot for a REST API

Recently, I needed to send a huge file as a response for a REST call 📂. Initially, I thought about...

Learn More 20 0Aug 25 '24

Building a Simple CRUD Banking Application with Spring Boot and Swagger UI🚀🚀

Spring Boot makes building robust and production-ready applications seamless with its simplicity and...

Learn More 19 0Jan 10

Multithreading and Patterns

Multithreading-Design-Patterns Implementing the most used multithreading design patterns...

Learn More 19 0Aug 5 '24

Creating Custom Annotations for Validation in Spring Boot

Creating Custom Annotations for Validation in Spring Boot 1. Overview While...

Learn More 19 2Jul 24 '24

Overloading Constructors and Constructor Chaining.

Note that: Having a private constructor in a class tells the compiler not to provide the default...

Learn More 18 0Nov 5 '24

Sending both File and JSON in One Request to Spring Boot

There are many people who use Spring Boot's @RequestPart to define an endpoint that receives both...

Learn More 17 2Dec 18 '24

Random Quotes Generator in spring Boot

Quotes Generator 1.controller package com.example.demo.controller; import...

Learn More 17 5Apr 14

Kafka Tracing with Spring Boot and OpenTelemetry : A Detailed Guide with Examples

Tracing is crucial for understanding the flow of requests in distributed systems. Kafka, as a...

Learn More 17 1Aug 2 '24