Omkar Lolagespringboot-intoduction.hashnode.dev·Dec 20, 2024Introduction to Spring Boot: Your Zeroth Step to MasterySpring is a popular Java based framework for developing various applications. It has become the the backbone of countless enterprise applications, offering a robust eco-system for solving complex challenges. Spring boot overcomes the difficulties ass...36 likesintroduction to spring boot
Anirban Chandcse-unveiled.hashnode.dev·Dec 15, 2024JDBC vs Hibernate vs JPA vs Spring Data JPA: A Beginner’s Guide to Java Data Handling ✨In the world of Java application development, dealing with databases is a crucial part of most projects. The challenge? Picking the right tool or framework for interacting with databases efficiently. If you’re confused by terms like JDBC, Hibernate, ...Java
LakshmiPerumalmalalakshmi.hashnode.dev·Dec 7, 2024Spring Boot Microservices Tutorial - Part 5In Part 5 of this Spring Boot Microservices Tutorial series, we will document our REST APIs using Springdoc Open API and Swagger. What is Open API? Open API (don't mistake it with Open AI :D )is a specification that defines a standard way to document...Java
Maheshwar Ligadefortechwastitechwasti.com·Dec 5, 2024Effortlessly Create DTOs with Java Records and MapStruct in Spring Boot!In modern Spring Boot applications, Data Transfer Objects (DTOs) play a vital role in ensuring clean code, maintaining separation of concerns, and improving application security. With the advent of Java Records, creating immutable DTOs has become sim...Spring BootSpringboot
LakshmiPerumalmalalakshmi.hashnode.dev·Dec 4, 2024Spring Boot Microservices Tutorial - Part 4In Part 4 of this Spring Boot Microservices Tutorial series, we will secure our API Gateway using Keycloak What is Keycloak? Keycloak is an open-source Authorization Server that can be used to outsource the authentication and authorization from our a...Springboot
LakshmiPerumalmalalakshmi.hashnode.dev·Dec 4, 2024Spring Boot Microservices Tutorial - Part 3In Part 3 of this Spring Boot Microservices Tutorial series, we will implement the API Gateway pattern using the Spring Cloud Gateway MVC library. What is an API Gateway? An API Gateway also called an Edge Server, acts as an entry point for our micro...Microservices
LakshmiPerumalmalalakshmi.hashnode.dev·Dec 4, 2024Spring Boot Microservices Tutorial - Part 1Introduction In this Spring Boot Microservices Tutorial series, you will learn how to develop applications with Microservices Architecture using Spring Boot and Spring Cloud and deploy them using Docker and Kubernetes. We will cover several concepts ...27 readsSpringboot
Maheshwar Ligadefortechwastitechwasti.com·Dec 4, 2024Creating SQL Queries Dynamically in Spring Boot!Working with databases is a fundamental part of developing most applications, but sometimes, static SQL queries don’t meet the dynamic requirements of real-world applications. For example, what if you need to build a search feature that filters resul...Spring BootSpring Data Jpa
Maheshwar Ligadefortechwastitechwasti.com·Dec 3, 2024End-to-End Guide to Spring Data REST with PostgreSQL!Spring Data REST simplifies the creation of RESTful APIs for Spring Data repositories. It eliminates boilerplate code and automatically exposes repository methods as REST endpoints. This guide demonstrates how to create a Spring Data REST application...Spring BootSpringboot
Duy Le Vanduylv.hashnode.dev·Nov 22, 2024GNUN with Spring DataWhat? Recently, I have read a term called GNUN. It's said: Give Nothing Until Needed Oh wow, from a developer's perspective, frameworks offer so much—they make everything look easier. We can clearly see their benefits when comparing how we work wit...Spring