Today we are going to think about this question: In Spring AOP, is the proxied object a singleton? Every time we get a proxy object, […]
JAVA
Spring trivia: an opportunity to advance AOP
Today, let’s talk about an unpopular knowledge in Spring: Bean processing does not follow the normal process, but performs AOP in advance. This article is […]
Comprehensive upgrade guide from Spring Boot 2.x to 3.2
Spring Framework is a popular open source enterprise framework for creating standalone, production-grade applications that run on the Java Virtual Machine (JVM). And Spring Boot […]
An in-depth explanation of Spring AOP
Chapter 1: Introduction Hello everyone, I am Xiaohei. What we are going to talk about today is AOP (aspect-oriented programming) of the Spring framework in […]
Spring Boot3, the startup time is shortened by 10 times!
Brother Song wrote an article earlier and talked to everyone about the new thing AOT introduced in Spring 6 (see Spring Boot 3 new gameplay, AOT […]
Spring Boot integrates Postgres to implement lightweight full-text search
There is a requirement for a user interface with a search function: The search process is as follows: This requirement involves two entities: Features that […]
In-depth analysis of the application of Java class attributes and class methods
Java class attributes Java class attributes, also known as fields, are variables in a class. They are used to store class-related data. Create class attributes […]
Some knowledge related to thread pool
Basically all programmers have used thread pools directly or indirectly. It is a double-edged sword. If you use it well, you will get twice the […]
What is the underlying logic of obtaining property names through method references?
Many friends may have used MyBatis-Plus. When we construct the where condition here, we can directly specify the attribute name through method reference: LambdaQueryWrapper<Book> qw […]
java/kotlin generates the optimal solution for echarts pictures
1. Method exploration There are not many ways to generate images in the background. According to my search on the Internet, there are the following […]