Grain mall -- Certification Center -- advanced notes 8

Cereals Mall - Certification Center - Advanced Chapter 8 notes 1. Environmental construction 1.1 create a new module gulimall auth server 1.2 pom documents If you don't choose to directly copy the pom file below, remember to exclude the mybatis plus of the gulimall common package <?xml version="1.0" encoding="UTF-8"?> <project ...

Posted by uramagget on Mon, 13 Dec 2021 02:38:29 +0100

[crazy God talking about Java] SpringCloud notes (50000 word nanny notes)

video [crazy God says Java] the latest tutorial of spring cloud, IDEA version Notes refer to flying man's (filled with many missing knowledge points) https://blog.csdn.net/weixin_43591980/article/details/106255122 Project complete source code Remember the third company~ Gitee : https://gitee.com/NYNUywg/springcloud Baidu online di ...

Posted by mcollyns on Sun, 12 Dec 2021 23:09:55 +0100

springCloud starts from scratch

*** 1. Understand springCloud 1.1. What is springCloud Spring cloud is one of the projects under spring, Official website address: http://projects.spring.io/spring-cloud/ Spring is best at integration, taking the best framework in the world and integrating it into its own project. Spring cloud is the same. It integrates some popular techno ...

Posted by shutat on Fri, 10 Dec 2021 17:26:11 +0100

Student management of SpringCloud micro service

1. Environmental construction 1.1 architecture analysis Registry: NacosGateway: GatewayBackend infrastructure: ssmFront end: Vue + SPAAxios(request.js) 1.2 database environment 1.2. 1 student database #Student database CREATE DATABASE nacos_ssm_student; USE nacos_ssm_student; CREATE TABLE tb_city( c_id VARCHAR(32) PRIMARY KEY COMMENT ...

Posted by echoninja on Fri, 10 Dec 2021 13:26:07 +0100

Getting started with the latest version of SpringCloud Gateway

background Last time How to select online Spring Boot, Spring Cloud and Spring Cloud Alibaba versions as well as Zuul and Gateway request IO model comparison (WebFlux advantages) and Reactor model analysis Select the Gateway in the micro service to use the Gateway. Next, let's build a simple Gateway to use Introduction to spring cloud ga ...

Posted by CostaKapo on Thu, 09 Dec 2021 08:11:27 +0100

Java code generator update: adding multi data source schema support

introduction Hello, guys, I haven't seen you for a week. During this time, I updated a version of the code generator in my spare time after work and added the previously popular multi data source mode. In this way, the generated code can realize the function of dynamic switching of data sources. Multi data sources are commonly used in proj ...

Posted by h123z on Wed, 08 Dec 2021 23:45:49 +0100

Actual combat of microservice scenario: build authentication center service from scratch based on SpringCloud Alibaba

Authentication center service Meet JWT json web token is an open standard. It defines a compact and self-contained way to safely transmit information between parties as json objects After authentication, the server will generate a json object and send it to the client. After that, both the client and the server need to bring this object to t ...

Posted by hush on Tue, 07 Dec 2021 21:25:17 +0100

The past and present life and application practice of Dubbo, a distributed service governance framework

Dubbo's background Dubbo has been open source for nearly 10 years and has been widely used in major domestic enterprises. What magic is it worth pursuing? This article gives you a detailed description. Requirements of large-scale service for service governance When enterprises begin large-scale service, the disadvantages brought by remote ...

Posted by williamg on Tue, 07 Dec 2021 16:07:04 +0100

Solon Cloud Distributed Development Suite checklist and quick overview

Solon Cloud is a series of interface standards and configuration specifications. Solon Cloud provides a simple and convenient programming mode for common distributed system modes to help developers build elastic, reliable and coordinated applications. Solon Cloud is built on Solon, which makes it easy for developers to start and quickly apply i ...

Posted by emmbec on Tue, 07 Dec 2021 06:58:00 +0100

Principle of Mybatis Plus dynamic SQL generation

         Mybatis plus (MP) is an enhancement tool for mybatis, so how is it enhanced? In fact, it has encapsulated some crud methods, so there is no need to write xml for development. Just call these methods directly, which is similar to JPA. The structure diagram of mybatis plus is as follows: Entry cla ...

Posted by servo on Mon, 06 Dec 2021 03:23:46 +0100