SpringBoot uses Arthas for performance analysis and hot update of production environment
thank
First of all, we need to thank the colleagues who participated in the investigation together. Without them, we can't complete the analysis. Finally, the problem has not been solved. If it is solved, I hope the students of operation and maintenance can share it on the network to make up for the defects of this article.
backgroun ...
Added by schlag on Sat, 15 Jan 2022 13:31:22 +0200
Spring event mechanism
conceptIn a complete event system, there are the following rolesEvent: describe what happened, such as request processing completed and Spring container refresh completedEvent source: the generator of an event. Any event must have an event source. For example, the event source of request processing is DispatcherServlet, and the event source of ...
Added by bigdaddykraven on Sat, 15 Jan 2022 11:17:38 +0200
Springboot source code analysis first bullet - automatic assembly implementation
Spring boot doesn't need much. It's an artifact that liberates both hands of Java development. The most remarkable feature is de configuration, automatic assembly and automatic configuration. Let developers only focus on business development Today, let's learn how to realize the source code of automatic assembly
Prepare in advance
Direct refe ...
Added by dmphotography on Sat, 15 Jan 2022 10:21:18 +0200
Using interceptors in spring boot
Interceptor is the core content of spring MVC. Using the AOP (Aspect Oriented Programming) feature of spring, it is convenient to extract the user's business code horizontally and enhance the application function according to the specific business requirements.
Interceptor is used in SpringBoot and developed with full annotation, involving the ...
Added by tomfra on Sat, 15 Jan 2022 08:23:10 +0200
SpringBoot technology practice - SpringRetry retry framework
1, Environment construction
Add spring retry dependency. Spring retry uses AOP implementation, so you also need to add AOP package
<!-- SpringRetry -->
<dependency>
<groupId>org.springframework.retry</groupId>
<artifactId>spring-retry</artifactId>
</dependency>
<dependency>
<groupId& ...
Added by silent on Sat, 15 Jan 2022 07:40:47 +0200
Springboot front and back end separation - Shiro+Md5 encryption and authentication login ----- learning record
Springboot front and back end separation - integration of Shiro-Md5 encryption and authentication login - Learning Records
Reference here: https://blog.csdn.net/bbxylqf126com/article/details/110501155
https://blog.csdn.net/weixin_42375707/article/details/111145907
https://blog.csdn.net/qq_34845394/article/details/94858168
I am confu ...
Added by Dang on Sat, 15 Jan 2022 06:23:35 +0200
The layui table shows the cascading query of multiple tables in the background (many to many, many to one) with mybatis cascading query source code, which has been solved
In ssm and springboot projects, we have one to many and many to many situations between tables, so they need to perform cascade query to query the associated data. The problem involved in cascade query is that there are objects (one to one) or object collections (one to many) of another entity class in one entity class, When using layui, we wil ...
Added by SUNNY ARSLAN on Sat, 15 Jan 2022 05:58:28 +0200
Detailed explanation of face detection in Java version Part 2: coding
Welcome to my GitHub
Here we classify and summarize all the original works of Xinchen (including supporting source code): https://github.com/zq2599/blog_demos
Overview of this article
If you've seen it Three minute experience: face detection in Java You should be interested in the technical details behind it. To develop such an applicat ...
Added by lulon83 on Sat, 15 Jan 2022 03:15:51 +0200
springboot learning notes
SpringBoot
1. First SpringBoot program
application.properties core configuration fileMain entry of Application programYou can modify the banner manually
2. Preliminary study on principle
Auto configuration:
2.1,pom.xml
Spring boot dependencies: the core dependencies are in the parent projectWhen writing or introducing Springboot dependenc ...
Added by Snart on Sat, 15 Jan 2022 00:20:38 +0200
Summary of Jackson's handling in Spring Boot framework
1. Preface
Generally, when using the Spring Boot framework, if we do not specify the serialization type of the interface, we will use the Jackson framework integrated by default by the Spring Boot framework for processing, and serialize the data responded by the server into JSON format through the Jackson framework.
This paper mainly summariz ...
Added by Formula on Fri, 14 Jan 2022 22:49:41 +0200