Spring 5 learning notes (full version)
1,Spring
1.1 INTRODUCTION
Spring: Spring ------ > spring brought to the software industry! Spring concept: it makes the existing technology easier to use. It is a hodgepodge and integrates the existing technology framework SSM:SpringMvc+Spring+MyBatis Official website: https://spring.io/projects/spring-framework#overview Official down ...
Added by Biocide on Thu, 30 Dec 2021 20:46:21 +0200
Climbing Spring Pearl mulama peak: @ Import, ImportAware use and principle analysis
@Import resolution
@Import provides a different import method from @ Bean. This article will introduce the annotation provided by Spring from the usage and principle.
Usage 1: @ Import + common class
@Configuration
@Import(Teacher.class)
public class ImportConfig {}
public class Teacher {}
@Import introduces a common class that can be ad ...
Added by jordanwb on Thu, 30 Dec 2021 18:53:06 +0200
Spring Interview Requirements-Circular Dependency
1. What is circular dependency
1.1 Overview
Circular dependency is the interdependence between different objects. For example, A-like constructors depend on B instances, B-like constructors depend on A instances, so Spring needs to inject B instances when initializing A instances, then B instances need to be taken from containers, then B inst ...
Added by gfoot on Thu, 30 Dec 2021 18:06:39 +0200
Learning of Spring framework
Spring is a very popular Java Web development framework, which is used to solve the complexity of enterprise applications.
Spring framework is an open source J2EE application framework, which is a lightweight container for managing the life cycle of bean sInversion of control - Spring promotes low coupling through a technology called inversion ...
Added by theorok on Thu, 30 Dec 2021 17:57:04 +0200
Super detailed!!! Complete knowledge points of SpringCloud (including Eureka, Zookeeper, Consul, Ribbon, Openfeign and Hystrix)
All supporting materials have been uploaded to QQ group: 167356412; if necessary, the group file can be obtained by yourself
Spring Cloud China community official website: http://springcloud.cn
Spring Cloud China Community Forum: http://bbs.springcloud.cn
Spring Cloud China community documentation: http://docs.springcloud.cn
1, Introduc ...
Added by BIGjuevos on Thu, 30 Dec 2021 01:51:43 +0200
First knowledge of Spring framework (with case source code) < 2 >
Get started Spring
1. Write a Hello entity class
public class Hello {
private String name;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public void show(){
System.out.println("Hello,"+ name );
}
}
2. Write the Spring file, which is nam ...
Added by ckk on Thu, 30 Dec 2021 01:46:42 +0200
Exercise on spring integrating mytabis spring configuration file replaces mybatis core file
spring integrates mytabis
Is to use the function of mybatis in the spring architecture It is equal to the mybatis tar package imported from the code written in non spring architecture to do the operation of the core configuration file, mapping configuration file and dynamic proxy interface of mybatis.
Then there are operations such as dao, se ...
Added by zak on Wed, 29 Dec 2021 14:57:32 +0200
Share an example of SpringBoot with front and rear end separation, which is suitable for beginners to learn
1. Package structure of SpringBoot
2. Relationship between packages
Controller: it is mainly responsible for the process control of specific business modules and will call the interface of Service layer to control business logic DAO: no matter what the framework is, we often interact with the database. If we all have to write SQL statements ...
Added by aisalen on Wed, 29 Dec 2021 12:26:29 +0200
AOP in Spring and AOP configuration based on XML and annotations
AOP in Spring and AOP configuration based on XML and annotations
Improve the account case
E:\JAVAworkspace\spring_account
Analyze the problems in the case
Each database operation should only obtain one connection connection and put these operations into one transaction to avoid dirty reading, non repeatable reading, phantom reading and oth ...
Added by kaszu on Wed, 29 Dec 2021 10:24:02 +0200
@Configuration(proxyBeanMethods = false) what's the use of setting this to false
Recently, looking at the source code of Nacos, I found that @ Configuration(proxyBeanMethods = false) on many Configuration classes set proxyBeanMethods to false. Special research.
The default value in the source code is true. You can probably know the explanation of this attribute.
If 1: is true, it means that the method marked by @Bean wil ...
Added by d99kg on Wed, 29 Dec 2021 01:52:48 +0200