hoangkimhoangkim.hashnode.dev·Jan 21, 2025Spring boot - nhápQuestion 01: What is Spring Boot? Answer: Spring Boot is a Java framework that allows you to easily create stand-alone, production-grade Spring-based Java applications. It is often used in microservice architectures because of its simplicity. Applic...spring-boot
Omkar Kanadeomkarkanade.hashnode.dev·Jan 16, 2025Mastering RESTful APIs with Spring Boot: A Step-by-Step Guide with Swagger IntegrationBuilding a Robust REST API with Spring Boot In this guide, we will walk through the process of building a robust REST API using Spring Boot. We will cover various topics such as setting up controllers, mapping requests to the appropriate handlers, ad...spring-boot
Robert Adamadamcast.hashnode.dev·Jan 7, 2025Criando as primeiras funcionalidades da nossa APIOlá pessoal! Hoje vamos continuar nossa série de tutoriais sobre como construir uma API em Java com Spring Boot. Se você ainda não leu os artigos anteriores, clique aqui para entender melhor o contexto e preparar seu ambiente de desenvolvimento. O qu...TV Show BuddyJava
Himanshu Pareekblog.javarush.dev·Sep 8, 2024Creating Docker Image of Spring Boot Application using BuildpacksIntroduction You have created a Spring Boot application. It is working great on your local machine and now, you need to deploy the application somewhere else. On some platforms, you can directly submit the jar file and it will be deployed. At some pl...57 readsJava and Spring FrameworkDocker
Nicolas Fränkelfrankel.hashnode.dev·Aug 8, 2024FeaturedOpenTelemetry Tracing on Spring Boot, Java Agent vs. Micrometer TracingMy demo of OpenTelemetry Tracing features two Spring Boot components. One uses the Java agent, and I noticed a different behavior when I recently upgraded it from v1.x to v2.x. In the other one, I'm using Micrometer Tracing because I compile to Graal...15 likes·77 readsmicrometer tracing
Abhinav PandeyforfreeCodeCampfreecodecamp.org·Jul 26, 2024How to Develop a CRUD App with Spring Boot, Neon Postgres, and Azure App ServiceIn this article, we'll explore how to develop a CRUD (Create, Read, Update, Delete) application using Spring Boot and Neon Postgres. We'll also deploy the application on Azure App Service and make it production-ready by setting up features like autos...Azure
Mario CasariforfreeCodeCampfreecodecamp.org·Jul 8, 2024How to Perform Load Testing in Spring Boot with GatlingTo evaluate the performance of a system, you need a tool that can simulate its behavior in production. For this purpose, you can use a software tool based on Scala called Gatling. This article will teach you how to integrate it into a Spring Boot ap...Gatling
Shailendra Singhtechsphere.dev·Jun 16, 2024Spring Into Docker: Containerizing Your Application EffectivelyContainers have become the preferred method for bundling an application along with its software and operating system dependencies, allowing easy deployment across different environments. In this article, lets look at containerizing a Spring Boot appl...388 readsspring-boot
Kunal NalawadeforfreeCodeCampfreecodecamp.org·May 8, 2024How to Implement an OAuth2 Resource Server with Spring SecurityHey everyone! Imagine you are building an awesome application, with lots of cool features. Picture a backend server at its core that hosts a majority of the business logic and exposes functionality through APIs. Once you have planned out your APIs, t...Java
Shohanur Rahmanshohanur.hashnode.dev·Apr 21, 2024Microservice using spring bootWhat is a microservice? Microservices are a software architecture approach where an application is divided into small, independent and self-contained services that communicate with each other through APIs. This allows for faster development, deployme...28 readsMicroservices