Illustrated with pictures and texts, Spring Boot Starter is explained in ten thousand words! Who else wouldn't?
1, Introduction to SpringBoot starter1.1 what is a starterBefore SpringBoot, if we want to use spring MVC to build our web project, we must do the following:First, we need to introduce spring MVC dependencies into the projectRegister the dispatcher servlet of spring MVC in web.xml and configure the url mappingWrite springmcv-servlet.xml and con ...
Posted by coolbeansdude51 on Fri, 26 Nov 2021 18:07:02 -0800
Spring Cloud Alibaba technology stack [in]
Spring Cloud Alibaba Sentinel
1, Sentinel introduction
With the popularity of microservices, the stability between services and services becomes more and more important. Sentinel takes traffic as the starting point to protect the stability of services from multiple dimensions such as traffic control, fuse degradation and system load protect ...
Posted by shane18 on Fri, 26 Nov 2021 18:03:51 -0800
Page Jump of Hongmeng learning notes
Tips:
Before creating a project, you should select the development language. The author uses Java development. If other readers also use java development, you can operate together. For example, links to other development manuals are as follows: Development using JS language (traditional code mode),Development using JS language (low code mode ...
Posted by blackandwhite on Fri, 26 Nov 2021 17:56:54 -0800
JVM monitoring and diagnostic tool - jstat of command
1, jps (Java Process status) view the running java process
Start the following procedure:
Parameters:
-q: Show ID ONLY -l fully qualified name of the output program -m output the parameters passed to main when the process starts -v list JVM parameters
View process details by jps Name:
1,jps
2,jps -q
3,jps -l
4,jps -m
...
Posted by sdat1333 on Fri, 26 Nov 2021 17:38:29 -0800
Log4j2 asynchronous log optimization based on Disruptor (partial source code learning)
1, Foreword recently, I encountered a thread blocking problem caused by log4j2 logging (thanks to the development brother's logging, otherwise there would be no following operations).Give a general description of the situation at that time (due to the restriction of Intranet, we can't take out the on-site things, so we can only dictate):l ...
Posted by ojav on Fri, 26 Nov 2021 17:34:27 -0800
Extensions to (Regular, Numeric, Array, Object)
Regular, Numeric, Array, Object
1. Regular Expansion
Provided u Modifier for regular recognition of two-character special words;
1 let result=/Pyramid{2}/u.test('Pyramid');
2 console.log(result);
Provided y Modifier, which continues to match down after one match;
1 let text='xxx_xx_xx_',
2 patt=/x+ ...
Posted by whmeeske on Fri, 26 Nov 2021 17:22:24 -0800
JAVA constructor / constructor and this usage
Construction method / constructor
● basic grammar
```java
·[Modifier ]Method name(parameter list ){
Method body;
}
```
1. The modifier of the constructor can be default or public protected private
2. The constructor has no return value
3. The method name and class name must be the same
4. The parameter list has the same rules as the membe ...
Posted by jphilapy on Fri, 26 Nov 2021 17:18:43 -0800
This article takes you to read the latest open source algorithm library in Swift community
Recently, Swift community has made frequent actions, logging in to Windows and launching the underlying basic library. Now we have launched the Swift algorithm library. Now let's see what's in it, whether it's worth applying in production, and whether the rich raywenderlich / Swift algorithm club is competitive enough.introduce Warehouse addres ...
Posted by trinitywave on Fri, 26 Nov 2021 17:01:00 -0800
Try RocketMQ, transaction messages, and not_ CONSUME_ The yet message cannot be consumed
The rocketmq version is
4.9.2. The version of rocketmq spring boot starter is
2.2.1
1, Code
Producer code
App class
package com.zgd.springboot.demo.simple;
import java.util.Date;
import com.zgd.springboot.demo.simple.mq.MQProducer;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.Sprin ...
Posted by Paul_Bunyan on Fri, 26 Nov 2021 16:47:25 -0800
Simple use of Level 1 and Level 2 caches in Mybatis Basic Learning
Preface:
Hello, ladies and gentlemen, I'm running like a snail rz. Of course you can call me Snail Jun. I'm a beginner who has studied Java for more than half a year. At the same time, I have a great dream that I will become an excellent Java architect one day.
This Mybatis Basic Learning series is used to record the whole process of ...
Posted by karlovac on Fri, 26 Nov 2021 16:46:32 -0800