Spring Cloud Learning Notes: Using Zuul to Build Service Gateway

brief introduction Zuul is an open source API gateway server provided by Netflix. Spring Cloud integrates and enhances Zuul. The service gateway Zuul aggregates all the micro-service interfaces and exposes them uniformly. The external client only needs to interact with the service gateway. Compared with internal services, it can prevent them fr ...

Posted by chuddyuk on Thu, 19 Sep 2019 03:53:29 -0700

Spring MVC+Spring+mybatis Project Starts from scratch--Implementation of Spring mybatis mysql configuration

External package dependency introduction External dependency package introduction can be based on the relevant package name from Website: http://mvnrepository.com/ Get the dependency introducing statement structure. See the pom.xml file in ssm-parent for details of the dependency packages for SSM proj ...

Posted by webhamster on Thu, 19 Sep 2019 01:52:01 -0700

Apollo Source Parsing-Setting up Debugging Environment

Preparation Local runtime environment JDK : 1.8+ MySQL : 5.6.5+ Maven : 3.6.1 IDE : IntelliJ IDEA Apollo's table structure uses multiple default declarations for timestamp, so it requires more than 5.6.5 versions. From the official warehouse https://github.com/ctripcorp/apollo Fork comes out of its own warehouse https://github.com/wupeixuan ...

Posted by Asnom on Wed, 18 Sep 2019 04:45:41 -0700

Spring Cloud Learning Notes: Using Feign to Implement Declarative Service Calls

brief introduction Feign is a declarative Web Service client, which simplifies the writing of Web Service clients. Compared with Ribbon+RestTemplate, developers only need to call HTTP API through simple interfaces and annotations. It supports Spring MVC annotations and JAX-RS annotations, as well as pluggable encoders and decoders. Integrating ...

Posted by scotmcc on Thu, 12 Sep 2019 02:20:08 -0700

Implementing java json serialization framework from zero manually

json json Is a serialized json framework implemented by java. Characteristic Eight basic types of support Basic Type/Object Array/Collection/Enumeration/Object Support Minimalist API Subsequent characteristics @ Support for Field annotations Integrity support for deserialized objects currently supports only basic deserialization. Why creat ...

Posted by IronCannibal on Wed, 11 Sep 2019 23:09:48 -0700

Integrated SpringMVC for SpringBoot initial experience

As a developer, we all know that SpringBoot is based on Spring 4.0, which not only inherits the original excellent features of the Spring framework, but also further simplifies the entire process of building and developing Spring applications by simplifying the configuration.In addition, SpringBoot integrates a number of frameworks to resolve i ...

Posted by PHP_ColdFusion on Wed, 11 Sep 2019 09:58:59 -0700

Solve the single sign-on (SSO) problem after Spring Boot upgraded from 1.x to 2.x

Solve the single sign-on (SSO) problem after Spring Boot upgraded from 1.x to 2.x When learning Spring Cloud, when encountering the related content of authorized service oauth, he always knows half of it, so he decided to study and collate the content, principle and design of Spring Security, Spring Security Oauth2 and other permissions, authe ...

Posted by Mesden on Wed, 11 Sep 2019 01:46:46 -0700

SIA-GateWay API Gateway Installation and Deployment Guide

SIA-GATEWAY is a distributed micro-service gateway system based on Spring Cloud micro-service ecosystem. It has the characteristics of easy to use, visualization, high scalability and high availability, and provides cloud native, complete and mature access service solutions. This paper introduces the installation and deployment of API gateway. ...

Posted by Xpheyel on Tue, 10 Sep 2019 23:56:17 -0700

SpringBook Profile Chapter

SpringBoot configuration file defaults to application.properties, but this chapter focuses on yaml file configuration, because the current trend is to use yaml, which is a data description language similar to the subset of standard generic markup language XML, and its syntax is much simpler than XML. The pom file is posted at the end: Custom ...

Posted by cody7 on Sun, 08 Sep 2019 23:51:11 -0700

[Spring Cloud] Spring Cloud Config Implements Distributed Configuration Center

Spring Cloud Config Implements Distributed Configuration Center 1. Distributed Configuration Center In distributed systems, there are a large number of service applications, and each application needs a corresponding configuration file to help complete the initialization and operation of the service environment.As a result, a large number of se ...

Posted by POGRAN on Sun, 08 Sep 2019 19:44:13 -0700