© 2023 Hashnode
#spring-boot-cj3rk5tin007imsk8uz3eg4kz
Instead of having to create the wheel from scratch, which is a lot of work, using third-party APIs to collect payment makes accepting payment from consumers simple. In this article, we will mostly be …
Introduction Spring WebFlux is a reactive web framework that is built on top of the Reactive Streams API. It is designed to help developers build scalable and responsive web applications using reactiv…
In this blog which is part of the spring boot tutorial, you will get to know the different methods to create the spring boot application. There are several ways to create a Spring Boot application: S…
To deploy a Spring Boot REST service on Kubernetes, you can follow these steps Build a Docker image for your Spring Boot application. You can do this by creating a Dockerfile in the root directory of your project with the following content…
Recently, during the Spring Office Hours, we have been discussing Spring to Production as a topic. There are so many ways to get Spring Boot application to production. If your Spring Boot application …
Photo by James Harrison on Unsplash Spring Boot provides a very simple way of setting up Cron jobs in an application using Spring Scheduler. It can be easily packaged into a container , deployed on Ku…
在Spring 6.0之前,我们访问第三方服务或者微服务的http接口主要有这些方式: RestTemplate:可同步访问HTTP服务。 WebClient:可同步或异步访问HTTP服务。 Feign:在微服务架构中(不限于微服务),用声明式的方式访问HTTP服务。 在Spring 6.0中,我们有了一个更方便的HTTP请求的手段,HTTP Interfaces。HTTP Interfaces…
Over the years, Spring has been the hottest most used framework on the Java software market, especially in web development. For beginners, like me, Spring has appeared to be hard to learn, close to im…
Hello everyone, if you're developing an application where you want to send notifications from the backend to any platform android, ios, or web then this is the right article for you 😁 Prerequisite: …
Last week, I migrated a sample Spring application to Micronaut. This week, I did the same for Quarkus. Common changes Spring Boot and Micronaut both offer a parent POM. Quarkus favors using a BOM. <pa…