Friends know that when we use the Spring container, if we encounter some special beans, generally speaking, they can be configured in the following three […]
Month: May 2024
JavaScript
JS error reporting and fault tolerance solutions in React
Preface There are probably two reasons for the white screen. One is the loading of resources, and the other is JS execution errors. This article […]
JAVA
Let’s talk about how to customize parallelStream’s thread pool
This article mainly studies how parallelStream uses a custom thread pool ForkJoinPool java/util/concurrent/ForkJoinPool.java public class ForkJoinPool extends AbstractExecutorService { public ForkJoinPool(int parallelism, ForkJoinWorkerThreadFactory factory, UncaughtExceptionHandler […]
JAVA
A rare introduction enhancement in Spring IntroductionAdvisor
When we usually do AOP development, we basically enhance a certain method and do something before or after a certain method is executed. This is […]