Call of services between Spring Cloud microservices Spring Cloud microservices use Feign to call another service and use of Feign

Feign introduction There are many microservice architecture service instances. How to call between services? Spring Cloud provides a solution: Feign. Feign is a component of Spring Cloud and a WebService client, which is used to transfer services. To learn more about Feign, you can view: https://blog. ...

Added by craygo on Wed, 04 Mar 2020 08:10:30 +0200

Why do I use kustomize to manage Kubernetes yaml applications?

Kustomize is a tool to solve the application management problem of k8s yaml. kubectl has integrated kustomize since version 1.14. Before that, we had to install it ourselves. You can download the package of the corresponding operating system on GitHub for installation (https://github.com/kubernetes-sigs ...

Added by PakiGangsta on Tue, 03 Mar 2020 06:33:49 +0200

2020 teaches you the latest Spring Cloud Ribbon source code analysis

Code preparation Dependency relationship +------------+ +------------+ | | | | | | | | | | | | | | | | | consumer +------------> | provider | | | Re ...

Added by adrian28uk on Mon, 02 Mar 2020 09:09:49 +0200

[spring MVC] 2. A simple introduction case

Article directory Requirements for entry procedures 1. Create webapp project and introduce jar package: pom.xml 2. Configure the core controller (configure dispatcher servlet) 3. Write the configuration file of springmvc.xml 4. Write index.jsp and HelloController controller classes 5. Create the page ...

Added by adwfun on Mon, 02 Mar 2020 08:22:03 +0200

SpringBoot graphic tutorial 8 - SpringBoot integrated MBG "code generator"

If there is the concept of flying in the sky, there must be the realization of landing Ten times of concept is not as good as one time of code. Friend, I hope you can type all the code cases in this article Praise before you see, form a habit Spring boot text tutorial series article directory Spring boot picture and text tutorial 1 &q ...

Added by nonexistence on Sun, 01 Mar 2020 14:22:18 +0200

Spring Boot returns content type solution

background The front-end students need to return the content type field to return different types according to different file types. In addition, they need to directly open a download link, which actually supports the effect of adaptive preview for browsers like Chrome. https://tool.oschina.net/commo ...

Added by phpfre@k* on Sun, 01 Mar 2020 07:36:03 +0200

JavaScript Action Tables and CSS Styles

Summary In front-end development, tables are mainly used to store structured data, and CSS is mainly used to decorate DOM elements. How can tables and CSS be manipulated through DOM?In this paper, through some simple small examples, briefly describe the common operation methods of DOM on tables and CSS, for learning to share, if there are any d ...

Added by bastienvans on Sat, 29 Feb 2020 18:52:47 +0200

spring+atomikos+mysql8.0 completes distributed transactions

What is business? A group of sql operations related to the same data source are either completed or failed. What are the characteristics of transactions? Atomicity: success or failure Consistency: offset each other (e.g. seller + 200, buyer-200) Isolation: no interference between two parallel trans ...

Added by charliepage on Fri, 28 Feb 2020 11:14:46 +0200

Spring Boot + Vue separate the front and back ends and use Shiro to realize user information encryption

Hello, welcome to the program workplace, where you need to improve technology, career planning, personal growth, sideline development and other articles. Learn and improve with more small partners. In the last part, we talked about the authority database and authority control in the background. A ...

Added by manitoon on Wed, 26 Feb 2020 10:29:03 +0200

Learn spring cloud Eureka to take you from 0 to 1

1, What is a service registry Service registry is the core component of service registration and management, which is similar to directory service. It is mainly used to store service information, such as service provider url string, routing information, etc. Service registry is one of the most basic f ...

Added by barbs75 on Mon, 24 Feb 2020 15:58:18 +0200