Shang Silicon Valley Learning Notes AOP

Shang Silicon Valley AOP AOP (concept) 1. What is AOP (1) Aspect oriented programming (aspect oriented programming), AOP can isolate all parts of business logic, so as to reduce the coupling between all parts of business logic, improve the reusability of programs, and improve the efficiency of development. (2) Popular Description: add new f ...

Added by gmiyano on Mon, 07 Feb 2022 10:53:30 +0200

Special customization of SpringMvc in SpringBoot

There are many @ beans in the automatic configuration classes of SpringMvc. SpringBoot automatically configures some default properties of SpringMvc according to these classes. We can override this @ Bean to customize some of our own special things. Auto configuration class name: webmvcoautoconfiguration In most cases, SpringBoot marks m ...

Added by desmond_ckl on Mon, 07 Feb 2022 05:20:16 +0200

[learning notes of Spring column] - integrate AOP dynamic proxy into Bean's life cycle

This article is learning Chapter 10 of Spring hand column Notes, mainly record some of my debug debugging process, which is convenient for later review. For specific study, you can go to this column and highly recommend it. programme In fact, after the implementation of the core functions of AOP, it is not difficult to integrate these funct ...

Added by WebbDawg on Mon, 07 Feb 2022 02:36:35 +0200

[learning notes of Spring column] - container events and event listeners

This article is learning Chapter 10 of Spring hand column Notes, mainly record some of my debug debugging process, which is convenient for later review. For specific study, you can go to this column and highly recommend it. target There is an Event function in Spring, which can provide Event definition, publishing and listening to events to ...

Added by FUEL on Mon, 07 Feb 2022 02:29:39 +0200

[SpringBoot] integration of SpringBoot + JWT+ Mybatis

Now we need to complete the following requirements: After the user executes the login interface, a token needs to be generated and returned to the front end. Then, the front end carries the token in the request header to request other background interfaces. Before completing this requirement, let's first understand what JWT is. 1. Under ...

Added by Paulkirkewalker on Sun, 06 Feb 2022 23:47:01 +0200

Quick start Spring

Spring Realize the decoupling between classes: facilitate the management between classes 1. Light weight: it occupies less resources during operation, has high operation efficiency, and does not rely on other jar s 2. Decoupling: spring provides ioc control inversion, which enables the container to manage objects and their dependencies. The ...

Added by brendandonhue on Sun, 06 Feb 2022 22:45:29 +0200

Interpretation of Spring boot startup source code

catalogue preface Preparation before chasing source code text Explanation of notes Start process source code analysis Rough model diagram of Spring boot startup summary Course recommendation (free) preface In the last post, I introduced my friends to Spring boot and built a hello world project with Spring boot. I also raised the qu ...

Added by sfarid on Sun, 06 Feb 2022 21:06:34 +0200

Notes on crazy God -- developing single application with SpringBoot 21

Developing single application with Spring Boot (1) 1.SpringBoot Web development Steps to use SpringBoot: Create a SpringBoot application, select the modules we need, and SpringBoot will automatically configure the modules we need by default; Manually configure some configuration items in the configuration file to run. Focus on writin ...

Added by Rizla on Sun, 06 Feb 2022 20:59:23 +0200

Spring Boot Log Configuration (Ultra Detailed)

Spring Boot-Log Configuration (Ultra Detailed) Update log: 20170810 update via application.yml passes parameters to the logback. Short books do not support catalogs. Take a screenshot. Default Logback: By default, Spring Boot logs with Logback and outputs to the console at the INFO level. You should have seen a lot of INFO-level logs when ...

Added by exally on Sun, 06 Feb 2022 19:28:45 +0200

Spring source code - IOC part - circular dependency - use an example to prove what problems will occur if the L2 cache is removed [7]

Experimental environment: spring-framework-5.0.2,jdk8,gradle4.3.1 Spring source code - IOC part - container introduction [1] Spring source code - IOC part - container initialization process [2] Spring source code - IOC part - Xml Bean parsing and registration process [3] Spring source code - IOC part - Custom IOC container and Bean parsing r ...

Added by SieRobin on Sun, 06 Feb 2022 09:43:05 +0200