Microservice

Microservice- Resiliency patterns: Circuit Breaker Pattern

The retry pattern works well for covering transient failures, but if we don’t know how long the problem will last, we may end up putting a high load o ......

Microservice- Resiliency patterns: Retry Pattern

Retry Pattern Transient faults occur when a momentary loss of service functionality self-corrects. The retry pattern in gRPC enables us to retry a fai ......

Microservice - Project folder structure for hexagonal architecture

While there are no written rules for a hexagonal architecture folder, the following folders are common in typical Go projects: Application folder—Thi ......

Microservice - Hexagonal Architecture

Hexagonal architecture (https://alistair.cockburn.us/hexagonal-architecture/), proposed by Alistair Cockburn in 2005, is an architectural pattern that ......
Microservice Architecture Hexagonal

Microservice - Data Consistency

To have data consistency in a distributed system, you have two options: a two-phase commit (2PC) and saga. 2PC coordinates all the processes that form ......
Microservice Consistency Data

Microservice: API Gateway

How to use Spring cloud gateway 1. create a maven modele for the API gateway 2. add the dependency (Search "gateway" in the start.spring.io) into the ......
Microservice Gateway API

From monolithic application to microservice framework

challenges: 1. version control After testing the branch A, pull the latest code(merged B) -> confilcts ? no conflicts? -> regression testing 2. change ......

Microservice: Service Discovery

一个服务可以拥有多个实例(Instance),每个实例会引用不同的ip地址。这种情况下,我们将无法知道应该访问哪个。所以我们就需要Discovery Service来管理这些地址。 Discovery Service的工作原理 ......
Microservice Discovery Service

Microservice - What are microservices, and why are microservices?

The concept of microservices is simply breaking a single large potential service into many smaller services that work together, hence, the name. One v ......
microservices Microservice are What and

Taurus .Net Core 微服务开源框架:Admin 插件【4-3】 - 配置管理-Mvc【Plugin-MicroService 微服务】

继上篇:Taurus .Net Core 微服务开源框架:Admin 插件【4-2】 - 配置管理-Mvc【含请求日志打印】,本篇继续介绍下一个内容:系统配置节点:Mvc - Plugin - MicroService 配置界面:注册中心 ......

项目访问的端口是8018,但是真实接口地址是19080,导致访问这个地址http://9.6.237.104:8018/esb/microService/queryCurrentThirdDataInfo 是跨域的,应该怎么解决呀

这个问题是由于您的前端页面与后端应用程序的接口地址不在同一个域名下所引起的跨域请求。在浏览器中,出于安全考虑,通常不允许 JavaScript 从一个域名下访问另一个不同域名下的资源,这种行为被称为跨域请求(Cross-Origin Resource Sharing, CORS)。 有一些方法可以解 ......
共12篇  :1/1页 首页上一页1下一页尾页