Just Java in general

Java

Event-Driven Architecture with AWS Lambda & Amazon SQS Java

Event-Driven Architecture with AWS Lambda & Amazon SQS Java

Using AWS Lambda to process messages from Amazon SQS is a powerful serverless pattern that allows you to scale seamlessly and...
LTS LTS
1 min read
Amazon SQS with Spring Boot Using Spring Cloud AWS

Amazon SQS with Spring Boot Using Spring Cloud AWS

Amazon SQS (Simple Queue Service) is a fully managed message queuing service that enables decoupled and scalable microservice communication. Integrating SQS...
LTS LTS
1 min read
Using @Service Annotation in Spring Boot: A Detailed Guide

Using @Service Annotation in Spring Boot: A Detailed Guide

The @Service annotation in Spring Boot is one of the core stereotype annotations used to define business logic in a Spring...
LTS LTS
2 min read
Understanding REST Protocol and HTTP Methods with Java & Spring Boot

Understanding REST Protocol and HTTP Methods with Java & Spring Boot

Introduction REST (Representational State Transfer) is an architectural style used for designing networked applications. It relies on a stateless, client-server communication...
LTS LTS
2 min read
How to Use Bean Scopes in Spring Framework

How to Use Bean Scopes in Spring Framework

In the Spring Framework, a bean scope determines the lifecycle and visibility of a bean within the Spring context. Spring offers...
LTS LTS
1 min read
Designing an Event-Driven Architecture in Java with Spring Boot

Designing an Event-Driven Architecture in Java with Spring Boot

In today’s distributed systems world, responsiveness, scalability, and loose coupling are top priorities. Event-Driven Architecture (EDA) is a powerful design paradigm...
LTS LTS
1 min read
Spring Boot Microservice Using Lombok

Spring Boot Microservice Using Lombok

Writing clean and maintainable code is essential in any Java application, especially in microservices where modularity and simplicity matter most. The...
LTS LTS
1 min read
Understanding @Bean and @Autowired Annotations in Spring Framework

Understanding @Bean and @Autowired Annotations in Spring Framework

The Spring Framework offers powerful dependency injection features that simplify Java application development. Two commonly used annotations in Spring are @Bean...
LTS LTS
1 min read
Serving a ZIP File in Java with Spring Boot and Downloading It in ReactJS

Serving a ZIP File in Java with Spring Boot and Downloading It in ReactJS

This article demonstrates how to implement a REST API in Java using Spring Boot to serve a ZIP file and how...
LTS LTS
1 min read
Getting Started with Lombok in Java

Getting Started with Lombok in Java

Project Lombok is a Java library that helps reduce boilerplate code. It uses annotations to generate commonly used code like getters,...
LTS LTS
1 min read