Control inversion / dependency injection in Spring
Chapter 1 control inversion / dependency injection in Spring
review
Add, delete, modify and check.
Pre class test:
Contents of this chapter
Spring: Spring IOC: give the power to create objects to the spring core container. Factory mode
BeanFactory: lazy man
ApplicationContext: hungry man
< bean id="" name="" class="" scope="" >
T ...
Posted by akufen on Sat, 26 Feb 2022 15:44:43 +0100
Java EE core [Shell foundation]
1. What is Shell
Shell is a command line interpreter. It is a black window. When we issue some commands to Linux, Shell translates these commands into the actions that kernel can understand, then calls the kernel, operates the hardware, completes the operation, and then translates the signals into adult understandable forms.
Shell is also a p ...
Posted by balkan7 on Sat, 26 Feb 2022 08:48:50 +0100
Filter (super detailed)
Statement: This article is the notes sorted out according to the blogger's learning content. It is only used for exchange learning. If you need to watch the video, please move to: http://www.atguigu.com/
1.Filter ? What is a filter
Filter filter is one of the three major components of Java Web. The three components are: Servlet program, List ...
Posted by reddevil on Sat, 26 Feb 2022 07:10:57 +0100
Branch and loop statements
Branch statement
Process control
Classification: sequential structure, branch structure (if, switch), circular structure (while, do... While, for)
Sequential structure
Sequential structure is the simplest and most basic process control in the program. There is no specific syntax structure. It is executed in sequence according to the sequenc ...
Posted by Valera on Tue, 22 Feb 2022 13:55:34 +0100
swager/knife4j trivia record
1. Overview
Hello, I'm Ouyang Fangchao. Today's event is still related to swagger (to be exact, knife4j). In the SpringBoot project integrating swagger, the dependencies introduced are as follows:
<!-- https://mvnrepository.com/artifact/io.springfox/springfox-boot-starter -->
<dependency>
<groupId>io.springfox</group ...
Posted by eskick on Sun, 20 Feb 2022 15:15:09 +0100
2022Java learning notes 36 (object-oriented enhancement: abstract classes, abstract class cases)
2022Java learning notes 36 (object-oriented enhancement: abstract classes, abstract class cases)
1, Abstract class
A parent class knows that all its subclasses need to complete a function, but the completion of each subclass is different. The parent class can only define the basic requirements of the function for a long time, and the speci ...
Posted by pragma on Sun, 20 Feb 2022 13:26:02 +0100
Beginners use JavaWeb to write one of the most common registration and login pages
It is just a most common registration and login page written by Java Web for beginners. You only need to enter your user name and password
Only part of the java code is listed and explained. The database, configuration process, configuration file and html front-end interface follow their own capabilities
I First use the JDBC utils tool class ...
Posted by Cragsterboy on Sun, 20 Feb 2022 06:46:21 +0100
Java EE - Spring learning notes 04 [transaction management of Spring]
Java EE - Spring learning notes 01 [Ioc development model]
Java EE - Spring learning notes 02 [integration of Spring and Mybatis]
Java EE - Spring learning notes 03 [AOP development]
Java EE - Spring learning notes 04 [transaction management of Spring]
Java EE - Spring learning notes 05 [Mybatis's retrograde project]
catalogue
6, Tr ...
Posted by congos on Sat, 19 Feb 2022 15:31:22 +0100
I won't get off work until I finish this article on Java basics
TIP
This article is included in< Introduction · YuQue >For more in-depth articles, please go to< Introduction · YuQue> .
data type
There are eight basic data types in the Java language:
boolean/1byte/8char/16short/16int/32float/32long/64double/64
The eight basic data types are divided into four categories:
...
Posted by lisa71283 on Thu, 17 Feb 2022 13:41:46 +0100
Mybatis notes of the eight part script
Recently, I went out for an interview and wrote some technical points about Mybatis in my resume, so the interviewer began to ask me constantly. This article specially records some problems encountered in the interview.
What is Mybatis
Mybatis is a persistent SQL framework that encapsulates SQL to a certain extent. It encapsulates the commonl ...
Posted by feliperal on Sun, 13 Feb 2022 15:27:10 +0100