Design of Web security module based on Token
preface
Recently, I was working on a Web project. At first, I used Spring boot + Spring security, and then found that Spring security was too bloated (maybe I haven't used it yet). Just now, a WeChat official account tweeted me into the Token authentication mode. After understanding it, I thought it was very useful, so I began to change it ...
Posted by Phoenixheart on Sun, 16 Jan 2022 17:35:02 +0100
Eureka service governance of Spring Cloud
1, Eureka overview
Spring Cloud Eureka implements the function of service governance. Eureka provides server and client. The server is Eureka service registry. The client completes the registration and discovery of microservices to Eureka services.
Relationship between server and client
1,Eureka Server It is the server, which is res ...
Posted by Gafaddict on Sun, 16 Jan 2022 15:12:06 +0100
Spring boot source code analysis - automatic configuration of spring MVC
In the last section, we introduced
SpringBoot
How to start a built-in
tomcat
of We know we're here
SpringBoot
Projects can be used directly, such as
@RequestMapping
This kind of
SpringMVC
Will the students be surprised
Strange, why? I have no configuration
SpringMVC
Why can it be used?
In fact, it only introduces
...
Posted by axman505 on Sun, 16 Jan 2022 07:56:34 +0100
Bye, RocketMQ! A new generation of message oriented middleware with visual management and complete documentation!
Pulsar, a popular messaging middleware recently, wanted to learn. I found that many articles on the Internet introduce performance and compare Kafka, and there are few articles on practice! So I practiced with the official documents and wrote this article, which is estimated to be the first pulsar actual combat article in China. I hope it will ...
Posted by Aeolus on Sun, 16 Jan 2022 06:10:24 +0100
Finally understand why Spring Boot likes HikariCP. The illustration is too thorough!
preface
Now many companies are using HikariCP. HikariCP has also become the default connection pool of SpringBoot. With SpringBoot and microservices, HikariCP will be widely popularized.
The blogger will take you to analyze why HikariCP is favored by Spring Boot from the perspective of source code. The article directory is as follows:
Zero ...
Posted by ohjay on Sun, 16 Jan 2022 03:08:21 +0100
Use of MINIO in java
introduction
MINIO is the world's leading object storage pioneer, with millions of users all over the world On standard hardware, the read / write speeds are up to 183 GB / s and 171 GB / s. Object storage can act as the main storage layer to handle Spark, Presto, TensorFlow, H2O AI and other complex workloads, as well as becoming a substitute ...
Posted by wendymelon on Sun, 16 Jan 2022 01:24:40 +0100
Front and back end separation Vue + Springboot to realize single page development of user list (recommended Collection)
User list page development
Project introduction
User list page development can realize simple query, deletion, modification, and addition of user information. The front end uses the vue framework, and the back end uses the springboot framework. A simple vue+springboot separates the front and back ends of small projects.
The main modules ...
Posted by nominator on Sat, 15 Jan 2022 23:57:26 +0100
Build the SpringBoot project from scratch -- realize the registration function
previously on
The last article has introduced the design process of the front-end project and how to use HbuilderX to run wechat applet. At the end of the article, I briefly introduced the method of requesting data from the back-end java project with ajax. Let's take a look at this article in detail!
Before reading this article, let's take a ...
Posted by Denness on Sat, 15 Jan 2022 23:54:32 +0100
Mobile phone to view computer video, a simple personal video website based on springboot
brief introduction
Why do I suddenly want to do this, or is it because the memory of the mobile phone is a little small, and it is not very convenient to use the computer to read the learning materials on the computer directly, or do I want to use the mobile phone directly, which gave birth to this idea. After all, as a new youth in the ne ...
Posted by domainbanshee on Sat, 15 Jan 2022 22:21:30 +0100
Spring source code - core interface SmartInitializingSingleton&InitializingBean
#Spring source code - core interface smartinitializingsingleton & initializingbean
Spring version: Spring 5.3.13-release
#1. Core interface smartinitializingsingsingleton
Smartinitializingsingsingleton interface:
public interface SmartInitializingSingleton {
/**
* Invoked right at the end of the singleton pre-instantiation ph ...
Posted by shavas on Sat, 15 Jan 2022 19:32:47 +0100