Shohanur Rahmansyestemdesigns.hashnode.dev·Dec 11, 2024How to Fix CORS Issues in Spring Gateway SecurityCross-Origin Resource Sharing (CORS) is a critical aspect of modern web applications, especially when your frontend and backend are hosted on different origins. In this blog post, we’ll explore how to configure CORS in a Spring Gateway with security ...CORS
Can Okan Taşkırancanokan.hashnode.dev·Jul 20, 2024Notes of Spring Microservices in Action (Chapter 8)In distributed system architecture, critical behaviors like security, logging and tracking users are necessities to ensure. Implementing these functionalities to individual services by a common library, etc, has these side effects. It can be easily ...31 readsSpring Microservices in Action
hoangkimhoangkim.hashnode.dev·Dec 20, 2023Spring Cloud GatewayLà một API Gateway, nó hoạt động như một lớp trung gian giữa client và các dịch vụ bên trong. API Gateway có nhiệm vụ chuyển tiếp, tuyến đường (routing), bảo mật, và có thể thực hiện một số chức năng xử lý yêu cầu như rate limiting, circuit breaking....spring cloud gateway
Nicolas FränkelforApache APISIXapisix.hashnode.dev·Jun 21, 2023Evaluating Apache APISIX vs. Spring Cloud GatewayGiven the number of API Gateways available on the market, I'm regularly asked which is better. Better is a very subjective term. However, there's no denying that if you're advocating for a product, you should know your product and its competitors. In...22 likescomparison
Sujeet Kumarblog.techstories.online·May 10, 2023Best Practices for Building Flexible Microservices with Spring BootAs microservices continue to gain popularity, developers are looking for ways to build them in a flexible and efficient way. Spring Boot, a popular Java-based framework, is a powerful tool that can help developers build microservices with ease. This ...73 readsSpring BootSpring
Nishipal Rananishipalrana.hashnode.dev·Apr 5, 2023Connecting Your Java Spring Boot Microservices Seamlessly with Spring Cloud Gateway: A Step-by-Step GuideIn one of the projects, I was tasked with replacing the Netflix Zuul Gateway with Spring Cloud Gateway. While migrating the gateway it was difficult to find resources for Spring Cloud Gateway implementation. Hence this blog is an attempt to pour all ...228 readsSpringboot
Priyanshu Paratepriyanshutechblog.hashnode.dev·Dec 17, 2022How to work with spring boot Circuit breakerSpring Boot provides a convenient way to implement the circuit breaker pattern in your application using the Resilience4j library. Here's an example of how you can use it: First, add the resilience4j-spring-boot2 dependency to your project: <depend...44 readsJava