diff --git "a/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/1\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/yh.sql" "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/1\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/yh.sql"
new file mode 100644
index 0000000000000000000000000000000000000000..b2dda8737eeedb3a0b8a2ed7ccf06b43e131cc2e
--- /dev/null
+++ "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/1\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/yh.sql"
@@ -0,0 +1,29 @@
+CREATE DATABASE MI DEFAULT CHARACTER SET utf8;
+
+USE MI;
+
+DROP TABLE IF EXISTS permissions;
+
+CREATE TABLE permissions (
+ ID int NOT NULL AUTO_INCREMENT,
+ name varchar(255) NULL,
+ phone varchar(255) NULL,
+ gender varchar(255) NULL,
+ date date NULL,
+ PRIMARY KEY (ID)
+);
+
+INSERT INTO permissions (name, phone, gender, date)
+VALUES
+ ('Alice', '123-456-7890', 'Female', '2022-01-01'),
+ ('Bob', '123-456-7891', 'Male', '2022-01-02'),
+ ('Charlie', '123-456-7892', 'Female', '2022-01-03'),
+ ('Dave', '123-456-7893', 'Male', '2022-01-04'),
+ (NULL, NULL, 'Female', NULL);
+
+
+
+UPDATE permissions SET name = 'Alice Smith' WHERE ID = 1;
+UPDATE permissions SET gender = 'Female' WHERE ID = 2;
+
+DELETE FROM permissions WHERE phone = '123-456-7894';
diff --git "a/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/.idea/.gitignore" "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/.idea/.gitignore"
new file mode 100644
index 0000000000000000000000000000000000000000..463c03eb9f96bffd2e493c6e18dea573f718c797
--- /dev/null
+++ "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/.idea/.gitignore"
@@ -0,0 +1,8 @@
+# 默认忽略的文件
+/shelf/
+/workspace.xml
+# 基于编辑器的 HTTP 客户端请求
+/httpRequests/
+# Datasource local storage ignored files
+/dataSources/
+/dataSources.local.xml
diff --git "a/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/.idea/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263.iml" "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/.idea/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263.iml"
new file mode 100644
index 0000000000000000000000000000000000000000..d6ebd4805981b8400db3e3291c74a743fef9a824
--- /dev/null
+++ "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/.idea/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263.iml"
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/.idea/artifacts/Spring_war.xml" "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/.idea/artifacts/Spring_war.xml"
new file mode 100644
index 0000000000000000000000000000000000000000..cf9e9e4a531f1fb8c10835ef9b40579d7690d7ac
--- /dev/null
+++ "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/.idea/artifacts/Spring_war.xml"
@@ -0,0 +1,14 @@
+
+
+ $PROJECT_DIR$/homework/target
+
+
+ Spring
+ war
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/.idea/artifacts/Spring_war_exploded.xml" "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/.idea/artifacts/Spring_war_exploded.xml"
new file mode 100644
index 0000000000000000000000000000000000000000..8bb4524612e12dd48f884f343844c132183cc0ec
--- /dev/null
+++ "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/.idea/artifacts/Spring_war_exploded.xml"
@@ -0,0 +1,33 @@
+
+
+ $PROJECT_DIR$/homework/target/Spring
+
+
+ true
+ Spring
+ war
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/.idea/compiler.xml" "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/.idea/compiler.xml"
new file mode 100644
index 0000000000000000000000000000000000000000..4503364df727be014483b494a59758f95789d59f
--- /dev/null
+++ "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/.idea/compiler.xml"
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/.idea/encodings.xml" "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/.idea/encodings.xml"
new file mode 100644
index 0000000000000000000000000000000000000000..879aa1fb93ba23f9f90b734cd7de1f09ead7e1c0
--- /dev/null
+++ "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/.idea/encodings.xml"
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/.idea/jarRepositories.xml" "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/.idea/jarRepositories.xml"
new file mode 100644
index 0000000000000000000000000000000000000000..712ab9d985c20018a0c97b93d2148ac1ffe588a5
--- /dev/null
+++ "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/.idea/jarRepositories.xml"
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/.idea/junitgenerator-prj-settings.xml" "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/.idea/junitgenerator-prj-settings.xml"
new file mode 100644
index 0000000000000000000000000000000000000000..1ba16f9c56a23fab658c7199d0c1867f742ed263
--- /dev/null
+++ "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/.idea/junitgenerator-prj-settings.xml"
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/.idea/libraries/Maven__junit_junit_4_12.xml" "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/.idea/libraries/Maven__junit_junit_4_12.xml"
new file mode 100644
index 0000000000000000000000000000000000000000..d411041745b6e44356035cdd44538daca09388f6
--- /dev/null
+++ "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/.idea/libraries/Maven__junit_junit_4_12.xml"
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/.idea/libraries/Maven__org_hamcrest_hamcrest_core_1_3.xml" "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/.idea/libraries/Maven__org_hamcrest_hamcrest_core_1_3.xml"
new file mode 100644
index 0000000000000000000000000000000000000000..f58bbc11276f98bea2b6c82f21664c5a9f424fe3
--- /dev/null
+++ "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/.idea/libraries/Maven__org_hamcrest_hamcrest_core_1_3.xml"
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/.idea/libraries/Maven__org_springframework_spring_aop_5_3_18.xml" "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/.idea/libraries/Maven__org_springframework_spring_aop_5_3_18.xml"
new file mode 100644
index 0000000000000000000000000000000000000000..a0e36b64851b80ffc02dd64feab31e1fd0fb8be9
--- /dev/null
+++ "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/.idea/libraries/Maven__org_springframework_spring_aop_5_3_18.xml"
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/.idea/libraries/Maven__org_springframework_spring_beans_5_3_18.xml" "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/.idea/libraries/Maven__org_springframework_spring_beans_5_3_18.xml"
new file mode 100644
index 0000000000000000000000000000000000000000..644de4d1e9879ae3a97e32b427b8ec31ac759fd2
--- /dev/null
+++ "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/.idea/libraries/Maven__org_springframework_spring_beans_5_3_18.xml"
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/.idea/libraries/Maven__org_springframework_spring_context_5_3_18.xml" "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/.idea/libraries/Maven__org_springframework_spring_context_5_3_18.xml"
new file mode 100644
index 0000000000000000000000000000000000000000..2a5838f36b25968b1f68548734a0ceec9736b2b3
--- /dev/null
+++ "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/.idea/libraries/Maven__org_springframework_spring_context_5_3_18.xml"
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/.idea/libraries/Maven__org_springframework_spring_core_5_3_18.xml" "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/.idea/libraries/Maven__org_springframework_spring_core_5_3_18.xml"
new file mode 100644
index 0000000000000000000000000000000000000000..78b1303ae21d272565338caf7cee35c0dec675d7
--- /dev/null
+++ "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/.idea/libraries/Maven__org_springframework_spring_core_5_3_18.xml"
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/.idea/libraries/Maven__org_springframework_spring_expression_5_3_18.xml" "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/.idea/libraries/Maven__org_springframework_spring_expression_5_3_18.xml"
new file mode 100644
index 0000000000000000000000000000000000000000..7e96f066c141a58b35af94421ad85974b7f3e8d2
--- /dev/null
+++ "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/.idea/libraries/Maven__org_springframework_spring_expression_5_3_18.xml"
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/.idea/libraries/Maven__org_springframework_spring_jcl_5_3_18.xml" "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/.idea/libraries/Maven__org_springframework_spring_jcl_5_3_18.xml"
new file mode 100644
index 0000000000000000000000000000000000000000..4f4fc2b580e8f79834d7538d88ae7ebe4b78f50a
--- /dev/null
+++ "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/.idea/libraries/Maven__org_springframework_spring_jcl_5_3_18.xml"
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/.idea/misc.xml" "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/.idea/misc.xml"
new file mode 100644
index 0000000000000000000000000000000000000000..76f833123ae97bdc66ed9a064df442b1bcb10c72
--- /dev/null
+++ "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/.idea/misc.xml"
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/.idea/modules.xml" "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/.idea/modules.xml"
new file mode 100644
index 0000000000000000000000000000000000000000..9ffe3d5fd6bff3230ec2b41b5d69e3e2a683bd98
--- /dev/null
+++ "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/.idea/modules.xml"
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/.idea/vcs.xml" "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/.idea/vcs.xml"
new file mode 100644
index 0000000000000000000000000000000000000000..b2bdec2d71b6a5ce4ae49efc37516809c50e4d5e
--- /dev/null
+++ "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/.idea/vcs.xml"
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/homework/.idea/.gitignore" "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/homework/.idea/.gitignore"
new file mode 100644
index 0000000000000000000000000000000000000000..13566b81b018ad684f3a35fee301741b2734c8f4
--- /dev/null
+++ "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/homework/.idea/.gitignore"
@@ -0,0 +1,8 @@
+# Default ignored files
+/shelf/
+/workspace.xml
+# Editor-based HTTP Client requests
+/httpRequests/
+# Datasource local storage ignored files
+/dataSources/
+/dataSources.local.xml
diff --git "a/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/homework/.idea/compiler.xml" "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/homework/.idea/compiler.xml"
new file mode 100644
index 0000000000000000000000000000000000000000..08fc8f0f4e9c016b2766bd75d144c504d9ff0265
--- /dev/null
+++ "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/homework/.idea/compiler.xml"
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/homework/.idea/encodings.xml" "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/homework/.idea/encodings.xml"
new file mode 100644
index 0000000000000000000000000000000000000000..aa00ffab7828f4818589659c804ec2cfd99baed3
--- /dev/null
+++ "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/homework/.idea/encodings.xml"
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/homework/.idea/jarRepositories.xml" "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/homework/.idea/jarRepositories.xml"
new file mode 100644
index 0000000000000000000000000000000000000000..cce8e0f5ffcc4d6b1b9c5149eca38188dab4e1b1
--- /dev/null
+++ "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/homework/.idea/jarRepositories.xml"
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/homework/.idea/junitgenerator-prj-settings.xml" "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/homework/.idea/junitgenerator-prj-settings.xml"
new file mode 100644
index 0000000000000000000000000000000000000000..1ba16f9c56a23fab658c7199d0c1867f742ed263
--- /dev/null
+++ "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/homework/.idea/junitgenerator-prj-settings.xml"
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/homework/.idea/misc.xml" "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/homework/.idea/misc.xml"
new file mode 100644
index 0000000000000000000000000000000000000000..79a352f1e92a127a65b42ab6185343abcbe656e0
--- /dev/null
+++ "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/homework/.idea/misc.xml"
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/homework/.idea/uiDesigner.xml" "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/homework/.idea/uiDesigner.xml"
new file mode 100644
index 0000000000000000000000000000000000000000..e96534fb27b68192f27f985d3879e173ec77adb8
--- /dev/null
+++ "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/homework/.idea/uiDesigner.xml"
@@ -0,0 +1,124 @@
+
+
+
+
+ -
+
+
+ -
+
+
+ -
+
+
+ -
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+ -
+
+
+ -
+
+
+ -
+
+
+ -
+
+
+
+
+ -
+
+
+ -
+
+
+
+
+
\ No newline at end of file
diff --git "a/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/homework/Spring.iml" "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/homework/Spring.iml"
new file mode 100644
index 0000000000000000000000000000000000000000..587955da4afe490e51deca7fc3b0522f122b908b
--- /dev/null
+++ "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/homework/Spring.iml"
@@ -0,0 +1,37 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/homework/pom.xml" "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/homework/pom.xml"
new file mode 100644
index 0000000000000000000000000000000000000000..abe51ae36c333866ee4a5c7c1610dfbd02a073db
--- /dev/null
+++ "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/homework/pom.xml"
@@ -0,0 +1,77 @@
+
+
+
+ 4.0.0
+
+ org.example
+ Spring
+ 1.0-SNAPSHOT
+ war
+
+ Spring Maven Webapp
+
+ http://www.example.com
+
+
+ UTF-8
+ 1.7
+ 1.7
+
+
+
+
+ junit
+ junit
+ 4.11
+ test
+
+
+ org.springframework
+ spring-context
+ 5.3.18
+
+
+ junit
+ junit
+ 4.12
+
+
+
+
+ Spring
+
+
+
+ maven-clean-plugin
+ 3.1.0
+
+
+
+ maven-resources-plugin
+ 3.0.2
+
+
+ maven-compiler-plugin
+ 3.8.0
+
+
+ maven-surefire-plugin
+ 2.22.1
+
+
+ maven-war-plugin
+ 3.2.2
+
+
+ maven-install-plugin
+ 2.5.2
+
+
+ maven-deploy-plugin
+ 2.8.2
+
+
+
+
+
diff --git "a/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/homework/src/main/java/cn/tedu/byName/Application.java" "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/homework/src/main/java/cn/tedu/byName/Application.java"
new file mode 100644
index 0000000000000000000000000000000000000000..1d5ebf34f6e0b8e2b5bd469632e875588da0ec9f
--- /dev/null
+++ "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/homework/src/main/java/cn/tedu/byName/Application.java"
@@ -0,0 +1,15 @@
+package cn.tedu.byName;
+
+import org.springframework.context.annotation.AnnotationConfigApplicationContext;
+import org.springframework.context.annotation.ComponentScan;
+import org.springframework.context.annotation.Configuration;
+
+@Configuration
+@ComponentScan
+public class Application {
+ public static void main(String[] args) {
+ AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext(Application.class);
+ Client client = context.getBean(Client.class);
+ client.doSomething();
+ }
+}
\ No newline at end of file
diff --git "a/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/homework/src/main/java/cn/tedu/byName/Client.java" "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/homework/src/main/java/cn/tedu/byName/Client.java"
new file mode 100644
index 0000000000000000000000000000000000000000..f23ca00ff199b7360fb18cefc0460ca5b5c9cae1
--- /dev/null
+++ "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/homework/src/main/java/cn/tedu/byName/Client.java"
@@ -0,0 +1,14 @@
+package cn.tedu.byName;
+
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.stereotype.Component;
+
+@Component
+public class Client {
+ @Autowired
+ private Service service;
+
+ public void doSomething() {
+ service.doSomething();
+ }
+}
diff --git "a/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/homework/src/main/java/cn/tedu/byName/Service.java" "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/homework/src/main/java/cn/tedu/byName/Service.java"
new file mode 100644
index 0000000000000000000000000000000000000000..5bf52388368b10107574fa1212c1cc5cce29b922
--- /dev/null
+++ "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/homework/src/main/java/cn/tedu/byName/Service.java"
@@ -0,0 +1,5 @@
+package cn.tedu.byName;
+
+public interface Service {
+ void doSomething();
+}
diff --git "a/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/homework/src/main/java/cn/tedu/byName/ServiceA.java" "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/homework/src/main/java/cn/tedu/byName/ServiceA.java"
new file mode 100644
index 0000000000000000000000000000000000000000..4bfb6b0a7c7a379ddd55e5ed3f881dc1c6ee990e
--- /dev/null
+++ "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/homework/src/main/java/cn/tedu/byName/ServiceA.java"
@@ -0,0 +1,11 @@
+package cn.tedu.byName;
+
+import org.springframework.stereotype.Component;
+
+@Component
+public class ServiceA implements Service {
+ @Override
+ public void doSomething() {
+ System.out.println("ServiceA is doing something.");
+ }
+}
diff --git "a/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/homework/src/main/java/cn/tedu/byName/ServiceB.java" "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/homework/src/main/java/cn/tedu/byName/ServiceB.java"
new file mode 100644
index 0000000000000000000000000000000000000000..d2f3e3f9f76ab4877789bc4b9e34ad923b7759af
--- /dev/null
+++ "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/homework/src/main/java/cn/tedu/byName/ServiceB.java"
@@ -0,0 +1,11 @@
+package cn.tedu.byName;
+
+import org.springframework.stereotype.Component;
+
+@Component
+public class ServiceB implements Service {
+ @Override
+ public void doSomething() {
+ System.out.println("ServiceB is doing something.");
+ }
+}
diff --git "a/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/homework/src/main/java/cn/tedu/byType/Application.java" "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/homework/src/main/java/cn/tedu/byType/Application.java"
new file mode 100644
index 0000000000000000000000000000000000000000..835373424143a31cf2d5679e4f42f59353a05cb8
--- /dev/null
+++ "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/homework/src/main/java/cn/tedu/byType/Application.java"
@@ -0,0 +1,16 @@
+package cn.tedu.byType;
+
+import org.springframework.context.annotation.AnnotationConfigApplicationContext;
+import org.springframework.context.annotation.ComponentScan;
+import org.springframework.context.annotation.Configuration;
+
+@Configuration
+@ComponentScan
+
+public class Application {
+ public static void main(String[] args) {
+ AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext(Application.class);
+ Client client = context.getBean(Client.class);
+ client.doSomething();
+ }
+}
diff --git "a/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/homework/src/main/java/cn/tedu/byType/Client.java" "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/homework/src/main/java/cn/tedu/byType/Client.java"
new file mode 100644
index 0000000000000000000000000000000000000000..3099183b8dd893fcb8aae7f2acadb0cce07ab597
--- /dev/null
+++ "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/homework/src/main/java/cn/tedu/byType/Client.java"
@@ -0,0 +1,14 @@
+package cn.tedu.byType;
+
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.stereotype.Component;
+
+@Component
+public class Client {
+ @Autowired
+ private Service service;
+
+ public void doSomething() {
+ service.doSomething();
+ }
+}
diff --git "a/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/homework/src/main/java/cn/tedu/byType/Service.java" "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/homework/src/main/java/cn/tedu/byType/Service.java"
new file mode 100644
index 0000000000000000000000000000000000000000..24feef6075aaf1ed654090bd70099af9930e222a
--- /dev/null
+++ "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/homework/src/main/java/cn/tedu/byType/Service.java"
@@ -0,0 +1,5 @@
+package cn.tedu.byType;
+
+public interface Service {
+ void doSomething();
+}
diff --git "a/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/homework/src/main/java/cn/tedu/byType/ServiceA.java" "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/homework/src/main/java/cn/tedu/byType/ServiceA.java"
new file mode 100644
index 0000000000000000000000000000000000000000..a9b217443e904cb4444f66fdeaee649769b31973
--- /dev/null
+++ "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/homework/src/main/java/cn/tedu/byType/ServiceA.java"
@@ -0,0 +1,11 @@
+package cn.tedu.byType;
+
+import org.springframework.stereotype.Component;
+
+@Component
+public class ServiceA implements Service {
+ @Override
+ public void doSomething() {
+ System.out.println("ServiceA is doing something.");
+ }
+}
diff --git "a/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/homework/src/main/java/cn/tedu/byType/ServiceB.java" "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/homework/src/main/java/cn/tedu/byType/ServiceB.java"
new file mode 100644
index 0000000000000000000000000000000000000000..375781d0162f32b4a9c8a39153b48cfb24737d6e
--- /dev/null
+++ "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/homework/src/main/java/cn/tedu/byType/ServiceB.java"
@@ -0,0 +1,11 @@
+package cn.tedu.byType;
+
+import org.springframework.stereotype.Component;
+
+@Component
+public class ServiceB implements Service {
+ @Override
+ public void doSomething() {
+ System.out.println("ServiceB is doing something.");
+ }
+}
\ No newline at end of file
diff --git "a/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/homework/src/main/webapp/WEB-INF/web.xml" "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/homework/src/main/webapp/WEB-INF/web.xml"
new file mode 100644
index 0000000000000000000000000000000000000000..9f88c1f9632445500e3b3688fe477b860f77d8f2
--- /dev/null
+++ "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/homework/src/main/webapp/WEB-INF/web.xml"
@@ -0,0 +1,7 @@
+
+
+
+ Archetype Created Web Application
+
diff --git "a/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/homework/src/main/webapp/index.jsp" "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/homework/src/main/webapp/index.jsp"
new file mode 100644
index 0000000000000000000000000000000000000000..c38169bb958579c635a5c09ee2f379cc5956c0c2
--- /dev/null
+++ "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/homework/src/main/webapp/index.jsp"
@@ -0,0 +1,5 @@
+
+
+Hello World!
+
+
diff --git "a/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/homework/target/classes/cn/tedu/byName/Application.class" "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/homework/target/classes/cn/tedu/byName/Application.class"
new file mode 100644
index 0000000000000000000000000000000000000000..c142ee8ad61594aac1e825eb39d8e0e24a2ec988
Binary files /dev/null and "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/homework/target/classes/cn/tedu/byName/Application.class" differ
diff --git "a/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/homework/target/classes/cn/tedu/byName/Client.class" "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/homework/target/classes/cn/tedu/byName/Client.class"
new file mode 100644
index 0000000000000000000000000000000000000000..6c4e13159d81799796205bbd1e2b81ed1916bb83
Binary files /dev/null and "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/homework/target/classes/cn/tedu/byName/Client.class" differ
diff --git "a/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/homework/target/classes/cn/tedu/byName/Service.class" "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/homework/target/classes/cn/tedu/byName/Service.class"
new file mode 100644
index 0000000000000000000000000000000000000000..d3a34a57ed4ef0385b6aa3b93fe45a228527f50c
Binary files /dev/null and "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/homework/target/classes/cn/tedu/byName/Service.class" differ
diff --git "a/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/homework/target/classes/cn/tedu/byName/ServiceA.class" "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/homework/target/classes/cn/tedu/byName/ServiceA.class"
new file mode 100644
index 0000000000000000000000000000000000000000..fffe2e549e94040b982965b7b22875442046d3d2
Binary files /dev/null and "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/homework/target/classes/cn/tedu/byName/ServiceA.class" differ
diff --git "a/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/homework/target/classes/cn/tedu/byName/ServiceB.class" "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/homework/target/classes/cn/tedu/byName/ServiceB.class"
new file mode 100644
index 0000000000000000000000000000000000000000..8f755feb7a5a57c472b02bd7ba9b726c0260a627
Binary files /dev/null and "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/homework/target/classes/cn/tedu/byName/ServiceB.class" differ
diff --git "a/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/homework/target/classes/cn/tedu/byType/Application.class" "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/homework/target/classes/cn/tedu/byType/Application.class"
new file mode 100644
index 0000000000000000000000000000000000000000..b2716c30b72a9f0934f305e00f7d641968102502
Binary files /dev/null and "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/homework/target/classes/cn/tedu/byType/Application.class" differ
diff --git "a/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/homework/target/classes/cn/tedu/byType/Client.class" "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/homework/target/classes/cn/tedu/byType/Client.class"
new file mode 100644
index 0000000000000000000000000000000000000000..0cfcf3d88451a69be2e821cd8422380e96258626
Binary files /dev/null and "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/homework/target/classes/cn/tedu/byType/Client.class" differ
diff --git "a/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/homework/target/classes/cn/tedu/byType/Service.class" "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/homework/target/classes/cn/tedu/byType/Service.class"
new file mode 100644
index 0000000000000000000000000000000000000000..ce4a0a8d1eb68fe4d61a6cf194c46c2655a9313c
Binary files /dev/null and "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/homework/target/classes/cn/tedu/byType/Service.class" differ
diff --git "a/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/homework/target/classes/cn/tedu/byType/ServiceA.class" "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/homework/target/classes/cn/tedu/byType/ServiceA.class"
new file mode 100644
index 0000000000000000000000000000000000000000..a50562a3e2c873eedbd13780683be1a7fa245089
Binary files /dev/null and "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/homework/target/classes/cn/tedu/byType/ServiceA.class" differ
diff --git "a/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/homework/target/classes/cn/tedu/byType/ServiceB.class" "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/homework/target/classes/cn/tedu/byType/ServiceB.class"
new file mode 100644
index 0000000000000000000000000000000000000000..305236df1a4c315980e1ff49ebc9f8ea944c8efb
Binary files /dev/null and "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/homework/target/classes/cn/tedu/byType/ServiceB.class" differ
diff --git "a/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/.idea/.gitignore" "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/.idea/.gitignore"
new file mode 100644
index 0000000000000000000000000000000000000000..463c03eb9f96bffd2e493c6e18dea573f718c797
--- /dev/null
+++ "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/.idea/.gitignore"
@@ -0,0 +1,8 @@
+# 默认忽略的文件
+/shelf/
+/workspace.xml
+# 基于编辑器的 HTTP 客户端请求
+/httpRequests/
+# Datasource local storage ignored files
+/dataSources/
+/dataSources.local.xml
diff --git "a/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/.idea/3\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263.iml" "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/.idea/3\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263.iml"
new file mode 100644
index 0000000000000000000000000000000000000000..207edb308fbcda29fafda6dae62736535650ff1a
--- /dev/null
+++ "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/.idea/3\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263.iml"
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/.idea/artifacts/Spring_war.xml" "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/.idea/artifacts/Spring_war.xml"
new file mode 100644
index 0000000000000000000000000000000000000000..cd5202e613a9d658ff895b8caee9222b9ad64069
--- /dev/null
+++ "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/.idea/artifacts/Spring_war.xml"
@@ -0,0 +1,14 @@
+
+
+ $PROJECT_DIR$/thrid_homeword/target
+
+
+ Spring
+ war
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/.idea/artifacts/Spring_war_exploded.xml" "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/.idea/artifacts/Spring_war_exploded.xml"
new file mode 100644
index 0000000000000000000000000000000000000000..1e8fcf17b06680e4bf7b26d20eabb18488f9fd1e
--- /dev/null
+++ "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/.idea/artifacts/Spring_war_exploded.xml"
@@ -0,0 +1,33 @@
+
+
+ $PROJECT_DIR$/thrid_homeword/target/Spring
+
+
+ true
+ Spring
+ war
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/.idea/compiler.xml" "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/.idea/compiler.xml"
new file mode 100644
index 0000000000000000000000000000000000000000..4503364df727be014483b494a59758f95789d59f
--- /dev/null
+++ "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/.idea/compiler.xml"
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/.idea/encodings.xml" "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/.idea/encodings.xml"
new file mode 100644
index 0000000000000000000000000000000000000000..2b2f9c9f46c834af459bdfcf0d986aacdf1e04bd
--- /dev/null
+++ "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/.idea/encodings.xml"
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/.idea/jarRepositories.xml" "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/.idea/jarRepositories.xml"
new file mode 100644
index 0000000000000000000000000000000000000000..712ab9d985c20018a0c97b93d2148ac1ffe588a5
--- /dev/null
+++ "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/.idea/jarRepositories.xml"
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/.idea/junitgenerator-prj-settings.xml" "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/.idea/junitgenerator-prj-settings.xml"
new file mode 100644
index 0000000000000000000000000000000000000000..1ba16f9c56a23fab658c7199d0c1867f742ed263
--- /dev/null
+++ "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/.idea/junitgenerator-prj-settings.xml"
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/.idea/libraries/Maven__junit_junit_4_12.xml" "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/.idea/libraries/Maven__junit_junit_4_12.xml"
new file mode 100644
index 0000000000000000000000000000000000000000..d411041745b6e44356035cdd44538daca09388f6
--- /dev/null
+++ "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/.idea/libraries/Maven__junit_junit_4_12.xml"
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/.idea/libraries/Maven__org_hamcrest_hamcrest_core_1_3.xml" "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/.idea/libraries/Maven__org_hamcrest_hamcrest_core_1_3.xml"
new file mode 100644
index 0000000000000000000000000000000000000000..f58bbc11276f98bea2b6c82f21664c5a9f424fe3
--- /dev/null
+++ "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/.idea/libraries/Maven__org_hamcrest_hamcrest_core_1_3.xml"
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/.idea/libraries/Maven__org_springframework_spring_aop_5_3_18.xml" "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/.idea/libraries/Maven__org_springframework_spring_aop_5_3_18.xml"
new file mode 100644
index 0000000000000000000000000000000000000000..a0e36b64851b80ffc02dd64feab31e1fd0fb8be9
--- /dev/null
+++ "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/.idea/libraries/Maven__org_springframework_spring_aop_5_3_18.xml"
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/.idea/libraries/Maven__org_springframework_spring_beans_5_3_18.xml" "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/.idea/libraries/Maven__org_springframework_spring_beans_5_3_18.xml"
new file mode 100644
index 0000000000000000000000000000000000000000..644de4d1e9879ae3a97e32b427b8ec31ac759fd2
--- /dev/null
+++ "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/.idea/libraries/Maven__org_springframework_spring_beans_5_3_18.xml"
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/.idea/libraries/Maven__org_springframework_spring_context_5_3_18.xml" "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/.idea/libraries/Maven__org_springframework_spring_context_5_3_18.xml"
new file mode 100644
index 0000000000000000000000000000000000000000..2a5838f36b25968b1f68548734a0ceec9736b2b3
--- /dev/null
+++ "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/.idea/libraries/Maven__org_springframework_spring_context_5_3_18.xml"
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/.idea/libraries/Maven__org_springframework_spring_core_5_3_18.xml" "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/.idea/libraries/Maven__org_springframework_spring_core_5_3_18.xml"
new file mode 100644
index 0000000000000000000000000000000000000000..78b1303ae21d272565338caf7cee35c0dec675d7
--- /dev/null
+++ "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/.idea/libraries/Maven__org_springframework_spring_core_5_3_18.xml"
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/.idea/libraries/Maven__org_springframework_spring_expression_5_3_18.xml" "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/.idea/libraries/Maven__org_springframework_spring_expression_5_3_18.xml"
new file mode 100644
index 0000000000000000000000000000000000000000..7e96f066c141a58b35af94421ad85974b7f3e8d2
--- /dev/null
+++ "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/.idea/libraries/Maven__org_springframework_spring_expression_5_3_18.xml"
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/.idea/libraries/Maven__org_springframework_spring_jcl_5_3_18.xml" "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/.idea/libraries/Maven__org_springframework_spring_jcl_5_3_18.xml"
new file mode 100644
index 0000000000000000000000000000000000000000..4f4fc2b580e8f79834d7538d88ae7ebe4b78f50a
--- /dev/null
+++ "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/.idea/libraries/Maven__org_springframework_spring_jcl_5_3_18.xml"
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/.idea/misc.xml" "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/.idea/misc.xml"
new file mode 100644
index 0000000000000000000000000000000000000000..c40440c646fc79ca9537ca5c0bdb6fefa7ba7032
--- /dev/null
+++ "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/.idea/misc.xml"
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/.idea/modules.xml" "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/.idea/modules.xml"
new file mode 100644
index 0000000000000000000000000000000000000000..b5c8627bc28663fa3665d5d4e3430cf09ddecd6e
--- /dev/null
+++ "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/.idea/modules.xml"
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/.idea/vcs.xml" "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/.idea/vcs.xml"
new file mode 100644
index 0000000000000000000000000000000000000000..b2bdec2d71b6a5ce4ae49efc37516809c50e4d5e
--- /dev/null
+++ "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/.idea/vcs.xml"
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/thrid_homeword/.idea/.gitignore" "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/thrid_homeword/.idea/.gitignore"
new file mode 100644
index 0000000000000000000000000000000000000000..13566b81b018ad684f3a35fee301741b2734c8f4
--- /dev/null
+++ "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/thrid_homeword/.idea/.gitignore"
@@ -0,0 +1,8 @@
+# Default ignored files
+/shelf/
+/workspace.xml
+# Editor-based HTTP Client requests
+/httpRequests/
+# Datasource local storage ignored files
+/dataSources/
+/dataSources.local.xml
diff --git "a/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/thrid_homeword/.idea/compiler.xml" "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/thrid_homeword/.idea/compiler.xml"
new file mode 100644
index 0000000000000000000000000000000000000000..88689ae70ac94dcdb8405381e0964f34c7536a79
--- /dev/null
+++ "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/thrid_homeword/.idea/compiler.xml"
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/thrid_homeword/.idea/encodings.xml" "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/thrid_homeword/.idea/encodings.xml"
new file mode 100644
index 0000000000000000000000000000000000000000..aa00ffab7828f4818589659c804ec2cfd99baed3
--- /dev/null
+++ "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/thrid_homeword/.idea/encodings.xml"
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/thrid_homeword/.idea/jarRepositories.xml" "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/thrid_homeword/.idea/jarRepositories.xml"
new file mode 100644
index 0000000000000000000000000000000000000000..cce8e0f5ffcc4d6b1b9c5149eca38188dab4e1b1
--- /dev/null
+++ "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/thrid_homeword/.idea/jarRepositories.xml"
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/thrid_homeword/.idea/junitgenerator-prj-settings.xml" "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/thrid_homeword/.idea/junitgenerator-prj-settings.xml"
new file mode 100644
index 0000000000000000000000000000000000000000..1ba16f9c56a23fab658c7199d0c1867f742ed263
--- /dev/null
+++ "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/thrid_homeword/.idea/junitgenerator-prj-settings.xml"
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/thrid_homeword/.idea/misc.xml" "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/thrid_homeword/.idea/misc.xml"
new file mode 100644
index 0000000000000000000000000000000000000000..79a352f1e92a127a65b42ab6185343abcbe656e0
--- /dev/null
+++ "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/thrid_homeword/.idea/misc.xml"
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/thrid_homeword/Spring.iml" "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/thrid_homeword/Spring.iml"
new file mode 100644
index 0000000000000000000000000000000000000000..587955da4afe490e51deca7fc3b0522f122b908b
--- /dev/null
+++ "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/thrid_homeword/Spring.iml"
@@ -0,0 +1,37 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/thrid_homeword/pom.xml" "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/thrid_homeword/pom.xml"
new file mode 100644
index 0000000000000000000000000000000000000000..abe51ae36c333866ee4a5c7c1610dfbd02a073db
--- /dev/null
+++ "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/thrid_homeword/pom.xml"
@@ -0,0 +1,77 @@
+
+
+
+ 4.0.0
+
+ org.example
+ Spring
+ 1.0-SNAPSHOT
+ war
+
+ Spring Maven Webapp
+
+ http://www.example.com
+
+
+ UTF-8
+ 1.7
+ 1.7
+
+
+
+
+ junit
+ junit
+ 4.11
+ test
+
+
+ org.springframework
+ spring-context
+ 5.3.18
+
+
+ junit
+ junit
+ 4.12
+
+
+
+
+ Spring
+
+
+
+ maven-clean-plugin
+ 3.1.0
+
+
+
+ maven-resources-plugin
+ 3.0.2
+
+
+ maven-compiler-plugin
+ 3.8.0
+
+
+ maven-surefire-plugin
+ 2.22.1
+
+
+ maven-war-plugin
+ 3.2.2
+
+
+ maven-install-plugin
+ 2.5.2
+
+
+ maven-deploy-plugin
+ 2.8.2
+
+
+
+
+
diff --git "a/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/thrid_homeword/src/main/java/cn/tedu/thrid/Demo.java" "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/thrid_homeword/src/main/java/cn/tedu/thrid/Demo.java"
new file mode 100644
index 0000000000000000000000000000000000000000..f5775e0469c3c99b93743bfbcd7044d83185ec27
--- /dev/null
+++ "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/thrid_homeword/src/main/java/cn/tedu/thrid/Demo.java"
@@ -0,0 +1,41 @@
+package cn.tedu.thrid;
+
+
+import jdk.nashorn.internal.objects.annotations.Getter;
+import org.springframework.beans.factory.annotation.Value;
+import org.springframework.context.annotation.PropertySource;
+import org.springframework.stereotype.Component;
+
+@PropertySource(value = "classpath:demo.properties",encoding = "utf-8")
+
+@Component
+public class Demo {
+ @Value("${uname}")
+ private String name;
+ @Value("${uage}")
+ private int age;
+
+ public String getName() {
+ return name;
+ }
+
+ public void setName(String name) {
+ this.name = name;
+ }
+
+ public int getAge() {
+ return age;
+ }
+
+ public void setAge(int age) {
+ this.age = age;
+ }
+
+ @Override
+ public String toString() {
+ return "Demo{" +
+ "name='" + name + '\'' +
+ ", age=" + age +
+ '}';
+ }
+}
diff --git "a/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/thrid_homeword/src/main/java/cn/tedu/thrid/Test01.java" "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/thrid_homeword/src/main/java/cn/tedu/thrid/Test01.java"
new file mode 100644
index 0000000000000000000000000000000000000000..8a388e9b77aeb374bc0830f73f1f8a6c5a4195c7
--- /dev/null
+++ "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/thrid_homeword/src/main/java/cn/tedu/thrid/Test01.java"
@@ -0,0 +1,18 @@
+package cn.tedu.thrid;
+
+import org.junit.Test;
+import org.springframework.context.ApplicationContext;
+import org.springframework.context.support.ClassPathXmlApplicationContext;
+import org.springframework.stereotype.Component;
+
+@Component
+
+public class Test01 {
+ @Test
+ public void test01(){
+ ApplicationContext applicationContext = new ClassPathXmlApplicationContext("beans.xml");
+ Demo demo = (Demo) applicationContext.getBean("demo");
+ System.out.println(demo);
+ ((ClassPathXmlApplicationContext)applicationContext).close();
+ }
+}
diff --git "a/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/thrid_homeword/src/main/resources/beans.xml" "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/thrid_homeword/src/main/resources/beans.xml"
new file mode 100644
index 0000000000000000000000000000000000000000..c74f5fbc0ff74e5412875650bab39dfa26d20d18
--- /dev/null
+++ "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/thrid_homeword/src/main/resources/beans.xml"
@@ -0,0 +1,8 @@
+
+
+
+
+
\ No newline at end of file
diff --git "a/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/thrid_homeword/src/main/resources/demo.properties" "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/thrid_homeword/src/main/resources/demo.properties"
new file mode 100644
index 0000000000000000000000000000000000000000..04f8a16196cfa2bb153e1c101c327c2f8ef092c9
--- /dev/null
+++ "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/thrid_homeword/src/main/resources/demo.properties"
@@ -0,0 +1,2 @@
+uname=鏉庣櫧
+uage=33
\ No newline at end of file
diff --git "a/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/thrid_homeword/src/main/webapp/WEB-INF/web.xml" "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/thrid_homeword/src/main/webapp/WEB-INF/web.xml"
new file mode 100644
index 0000000000000000000000000000000000000000..9f88c1f9632445500e3b3688fe477b860f77d8f2
--- /dev/null
+++ "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/thrid_homeword/src/main/webapp/WEB-INF/web.xml"
@@ -0,0 +1,7 @@
+
+
+
+ Archetype Created Web Application
+
diff --git "a/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/thrid_homeword/src/main/webapp/index.jsp" "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/thrid_homeword/src/main/webapp/index.jsp"
new file mode 100644
index 0000000000000000000000000000000000000000..c38169bb958579c635a5c09ee2f379cc5956c0c2
--- /dev/null
+++ "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/thrid_homeword/src/main/webapp/index.jsp"
@@ -0,0 +1,5 @@
+
+
+Hello World!
+
+
diff --git "a/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/thrid_homeword/target/classes/beans.xml" "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/thrid_homeword/target/classes/beans.xml"
new file mode 100644
index 0000000000000000000000000000000000000000..c74f5fbc0ff74e5412875650bab39dfa26d20d18
--- /dev/null
+++ "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/thrid_homeword/target/classes/beans.xml"
@@ -0,0 +1,8 @@
+
+
+
+
+
\ No newline at end of file
diff --git "a/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/thrid_homeword/target/classes/cn/tedu/thrid/Demo.class" "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/thrid_homeword/target/classes/cn/tedu/thrid/Demo.class"
new file mode 100644
index 0000000000000000000000000000000000000000..06f5be766c955d1165078bb80ba89407f41defd5
Binary files /dev/null and "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/thrid_homeword/target/classes/cn/tedu/thrid/Demo.class" differ
diff --git "a/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/thrid_homeword/target/classes/cn/tedu/thrid/Test01.class" "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/thrid_homeword/target/classes/cn/tedu/thrid/Test01.class"
new file mode 100644
index 0000000000000000000000000000000000000000..f2ce27b780a7083343d2877e2944278f8021abf7
Binary files /dev/null and "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/thrid_homeword/target/classes/cn/tedu/thrid/Test01.class" differ
diff --git "a/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/thrid_homeword/target/classes/demo.properties" "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/thrid_homeword/target/classes/demo.properties"
new file mode 100644
index 0000000000000000000000000000000000000000..04f8a16196cfa2bb153e1c101c327c2f8ef092c9
--- /dev/null
+++ "b/20202501397-\346\235\250\346\262\263-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501397-\346\235\250\346\262\263/thrid_homeword/target/classes/demo.properties"
@@ -0,0 +1,2 @@
+uname=鏉庣櫧
+uage=33
\ No newline at end of file