The five core components of spring cloud are brother Jun and brother Hou
Summary of spring cloud notes of Leyou project
The mapper module of ly item commodity contains datasource
Ly Cart: Shopping Cart module
Ly registry: registry server, other modules are clients
Ly API gateway: routing gateway
Ly feign: remote call
Registration Center Eureka, ly registry server
Lyregister the Module as the server
The s ...
Posted by pimp3679 on Tue, 05 Oct 2021 11:14:53 -0700
[Spring] IoC Control Reverse: What is IoC? What is a container? Write a simple Spring program to see!
Two months ago, I completed the Spring Framework with the Spring Framework tutorial video of Mr. Wang He, the power node of station b. During the learning process, I tapped the code involved in the video line by line, and sorted out the materials related to the introduction of Spring. Here I record my notes and some insights during the learning ...
Posted by ozman26 on Tue, 05 Oct 2021 09:27:35 -0700
Shangsi Valley grain college learning notes 4 - front end knowledge summary, lecturer list, front end implementation
es6 and vue basic knowledge points
es6 syntax new features blog link vue basics blog link axios blog link npm, webpack blog link
vue-element-admin
Vue element admin is a background management system integration scheme based on element UI.
Function: https://panjiachen.github.io/vue-element-admin-site/zh/guide/# function
GitHub address: http ...
Posted by Hafkas on Mon, 04 Oct 2021 17:36:26 -0700
Learning notes of Shangsi Valley grain college 9 -- front desk user login, registration and integration jwt
User login service
Single sign on (SSO) for short. Users only need to log in once to access all mutually trusted application systems
Three common ways of single sign on
Implementation of session broadcast mechanismUsing redis+cookieUsing token to implement
Implementation of session broadcast mechanism
In fact, it is session replication. Af ...
Posted by kmarsh on Mon, 04 Oct 2021 14:46:15 -0700
Swagger study notes
About Swagger
Front and rear end separation
Front end: front end control layer, view layerBack end: back end control layer, service layer and data access layerThe front and back ends interact through ApiThe front and rear ends are relatively independent and loosely coupled
Problems arising
During front-end and back-end integration, the fron ...
Posted by chetanrakesh on Mon, 04 Oct 2021 14:39:25 -0700
Shangsi Valley grain college learning notes 8 -- integrate NUXT foreground page, and redis cache has been integrated
Server side rendering technology NUXT
What is server-side rendering
Server side rendering, also known as SSR (Server Side Render), completes the content of the page on the server side, rather than obtaining data through AJAX on the client side.
The advantages of server-side rendering (SSR) are: better SEO, because the search engine crawl ...
Posted by nagrgk on Mon, 04 Oct 2021 13:10:14 -0700
[Springboot] notes on the gradual and simple implementation of Nacos gateway (Mac)
It is a note collation of personal learning practice (imitating the shangshangyitong project in Silicon Valley). It may not be deep, but it is indeed effective and feasible.
Nacos section
Nacos installation
What I suggest and I use is direct download: https://github.com/alibaba/nacos/releases 1.1 enter the official website and click downlo ...
Posted by shakazulu on Sun, 03 Oct 2021 19:25:02 -0700
JWT + interceptor is used in SpringBoot to realize login authentication
The old method has disadvantages
The previous strategy was the idea of UUID + redis + interceptor.
After verifying that the roomid and password match, the server uses UUID to generate a string as a token, then writes a token (roomid) to the Redis service, sets the expiration time to 20 minutes, and returns the token to the client through a re ...
Posted by rn14 on Sun, 03 Oct 2021 12:25:19 -0700
IDEA remote deployment debugging Java application
IDEA remote deployment debugging Java application
Basic overview
In our work, we may encounter that we cannot connect to the development environment database and other resources locally, but we want to develop and debug directly locally.
At this time, it can be realized through the Run on... Function of IDEA.
The principle is to connect ...
Posted by zaneosak on Sun, 03 Oct 2021 10:38:53 -0700
2. Bottom Notes
2. Bottom Notes
2.1 Container function
2.1.1. @Configuration
2.2.1.1.Basic Use
User.java
package cn.com.springboot.demo.bean;
import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.Setter;
import lombok.ToString;
/**
* User information.
*
* @author J
*/
@Setter
@Getter
@ToString
@NoArgsConstructor
public class User ...
Posted by a.beam.reach on Sun, 03 Oct 2021 10:16:25 -0700