diff --git "a/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/1\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/\344\275\234\344\270\232\344\270\200\346\265\201\347\250\213.docx" "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/1\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/\344\275\234\344\270\232\344\270\200\346\265\201\347\250\213.docx"
new file mode 100644
index 0000000000000000000000000000000000000000..fe5f095f97a831ceda123ae88cbd6edb5597533f
Binary files /dev/null and "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/1\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/\344\275\234\344\270\232\344\270\200\346\265\201\347\250\213.docx" differ
diff --git "a/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/1\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/\346\235\203\351\231\220\350\241\250.sql" "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/1\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/\346\235\203\351\231\220\350\241\250.sql"
new file mode 100644
index 0000000000000000000000000000000000000000..18597f2b1bef1e9ca62e2d1888034169fdbf7e14
--- /dev/null
+++ "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/1\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/\346\235\203\351\231\220\350\241\250.sql"
@@ -0,0 +1,50 @@
+/*
+ Navicat Premium Data Transfer
+
+ Source Server : homework_01
+ Source Server Type : MySQL
+ Source Server Version : 50520
+ Source Host : localhost:3306
+ Source Schema : mi
+
+ Target Server Type : MySQL
+ Target Server Version : 50520
+ File Encoding : 65001
+
+ Date: 29/11/2022 01:21:56
+*/
+
+SET NAMES utf8mb4;
+SET FOREIGN_KEY_CHECKS = 0;
+
+-- ----------------------------
+-- Table structure for 权限表
+-- ----------------------------
+DROP TABLE IF EXISTS `权限表`;
+CREATE TABLE `权限表` (
+ `ID` int(11) NOT NULL,
+ `名字` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
+ `电话` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
+ `性别` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
+ `日期` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
+ PRIMARY KEY (`ID`) USING BTREE
+) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Compact;
+
+-- ----------------------------
+-- Records of 权限表
+-- ----------------------------
+INSERT INTO `权限表` VALUES (0, NULL, NULL, '女', NULL);
+INSERT INTO `权限表` VALUES (1, '张三', '1001', '男', '2001');
+INSERT INTO `权限表` VALUES (2, 'jack', '1001', '男', '2001');
+INSERT INTO `权限表` VALUES (3, '法外狂徒', '1003', '男', '2000');
+INSERT INTO `权限表` VALUES (4, '李红', '1004', '男', '2000');
+
+SET FOREIGN_KEY_CHECKS = 1;
+
+
+update `权限表` set 名字="法外狂徒" where id="3";
+select * from `权限表`;
+update `权限表` set 性别="男" where id="3";
+select * from `权限表`;
+delete from `权限表` where 电话="1002";
+select * from `权限表`;
\ No newline at end of file
diff --git "a/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/.idea/.gitignore" "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/.idea/.gitignore"
new file mode 100644
index 0000000000000000000000000000000000000000..13566b81b018ad684f3a35fee301741b2734c8f4
--- /dev/null
+++ "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/.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/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/.idea/artifacts/Spring_war.xml" "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/.idea/artifacts/Spring_war.xml"
new file mode 100644
index 0000000000000000000000000000000000000000..b87836a26282e2831ad8850e8b63dbd21f5bb934
--- /dev/null
+++ "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/.idea/artifacts/Spring_war.xml"
@@ -0,0 +1,14 @@
+
+
+ $PROJECT_DIR$/Spring/target
+
+
+ Spring
+ war
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/.idea/artifacts/Spring_war_exploded.xml" "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/.idea/artifacts/Spring_war_exploded.xml"
new file mode 100644
index 0000000000000000000000000000000000000000..23ab93ab66be36226f5874385439007bb6416c4c
--- /dev/null
+++ "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/.idea/artifacts/Spring_war_exploded.xml"
@@ -0,0 +1,33 @@
+
+
+ $PROJECT_DIR$/Spring/target/Spring
+
+
+ true
+ Spring
+ war
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/.idea/compiler.xml" "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/.idea/compiler.xml"
new file mode 100644
index 0000000000000000000000000000000000000000..4503364df727be014483b494a59758f95789d59f
--- /dev/null
+++ "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/.idea/compiler.xml"
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/.idea/description.html" "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/.idea/description.html"
new file mode 100644
index 0000000000000000000000000000000000000000..db5f12955691506605c7b50297b402dd1489554d
--- /dev/null
+++ "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/.idea/description.html"
@@ -0,0 +1 @@
+Simple Java application that includes a class with main()
method
\ No newline at end of file
diff --git "a/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/.idea/encodings.xml" "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/.idea/encodings.xml"
new file mode 100644
index 0000000000000000000000000000000000000000..1e797f06d470a49d59c609b936c9a58f0981bd84
--- /dev/null
+++ "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/.idea/encodings.xml"
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/.idea/jarRepositories.xml" "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/.idea/jarRepositories.xml"
new file mode 100644
index 0000000000000000000000000000000000000000..cce8e0f5ffcc4d6b1b9c5149eca38188dab4e1b1
--- /dev/null
+++ "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/.idea/jarRepositories.xml"
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/.idea/junitgenerator-prj-settings.xml" "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/.idea/junitgenerator-prj-settings.xml"
new file mode 100644
index 0000000000000000000000000000000000000000..1ba16f9c56a23fab658c7199d0c1867f742ed263
--- /dev/null
+++ "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/.idea/junitgenerator-prj-settings.xml"
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/.idea/libraries/Maven__junit_junit_4_12.xml" "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/.idea/libraries/Maven__junit_junit_4_12.xml"
new file mode 100644
index 0000000000000000000000000000000000000000..2123a9897dd9af45909cf165def8e756d8fb06f2
--- /dev/null
+++ "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/.idea/libraries/Maven__junit_junit_4_12.xml"
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/.idea/libraries/Maven__org_hamcrest_hamcrest_core_1_3.xml" "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/.idea/libraries/Maven__org_hamcrest_hamcrest_core_1_3.xml"
new file mode 100644
index 0000000000000000000000000000000000000000..bd7ceda781b0fe21a8c5d0e5f832339f38c6493e
--- /dev/null
+++ "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/.idea/libraries/Maven__org_hamcrest_hamcrest_core_1_3.xml"
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/.idea/libraries/Maven__org_springframework_spring_aop_5_3_18.xml" "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/.idea/libraries/Maven__org_springframework_spring_aop_5_3_18.xml"
new file mode 100644
index 0000000000000000000000000000000000000000..d894631219df57d473eea812dd2178ef5ece6812
--- /dev/null
+++ "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/.idea/libraries/Maven__org_springframework_spring_aop_5_3_18.xml"
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/.idea/libraries/Maven__org_springframework_spring_beans_5_3_18.xml" "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/.idea/libraries/Maven__org_springframework_spring_beans_5_3_18.xml"
new file mode 100644
index 0000000000000000000000000000000000000000..cd39fd4d72fc8347b0a7083a7413a5081a0a6a8c
--- /dev/null
+++ "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/.idea/libraries/Maven__org_springframework_spring_beans_5_3_18.xml"
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/.idea/libraries/Maven__org_springframework_spring_context_5_3_18.xml" "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/.idea/libraries/Maven__org_springframework_spring_context_5_3_18.xml"
new file mode 100644
index 0000000000000000000000000000000000000000..97b21c79fde32b26e57dc1e99894bf60e7d40e5f
--- /dev/null
+++ "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/.idea/libraries/Maven__org_springframework_spring_context_5_3_18.xml"
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/.idea/libraries/Maven__org_springframework_spring_core_5_3_18.xml" "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/.idea/libraries/Maven__org_springframework_spring_core_5_3_18.xml"
new file mode 100644
index 0000000000000000000000000000000000000000..68da1a67353fd42f72f878c9a2e896ea6817e511
--- /dev/null
+++ "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/.idea/libraries/Maven__org_springframework_spring_core_5_3_18.xml"
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/.idea/libraries/Maven__org_springframework_spring_expression_5_3_18.xml" "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/.idea/libraries/Maven__org_springframework_spring_expression_5_3_18.xml"
new file mode 100644
index 0000000000000000000000000000000000000000..ca2a4f31ff57899a53d1f2184453d9f56ed27a3b
--- /dev/null
+++ "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/.idea/libraries/Maven__org_springframework_spring_expression_5_3_18.xml"
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/.idea/libraries/Maven__org_springframework_spring_jcl_5_3_18.xml" "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/.idea/libraries/Maven__org_springframework_spring_jcl_5_3_18.xml"
new file mode 100644
index 0000000000000000000000000000000000000000..911faf6e2076230742a93b05ffffbe2c660590f0
--- /dev/null
+++ "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/.idea/libraries/Maven__org_springframework_spring_jcl_5_3_18.xml"
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/.idea/misc.xml" "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/.idea/misc.xml"
new file mode 100644
index 0000000000000000000000000000000000000000..4106bde8d20ce7ee86f5aaab582f9ced281a5682
--- /dev/null
+++ "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/.idea/misc.xml"
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/.idea/modules.xml" "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/.idea/modules.xml"
new file mode 100644
index 0000000000000000000000000000000000000000..93639018a0c840cb4830801932f275d5352c71b0
--- /dev/null
+++ "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/.idea/modules.xml"
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/.idea/project-template.xml" "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/.idea/project-template.xml"
new file mode 100644
index 0000000000000000000000000000000000000000..1f08b88792b9888be9616fef9c5b20a92251d6e1
--- /dev/null
+++ "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/.idea/project-template.xml"
@@ -0,0 +1,3 @@
+
+ IJ_BASE_PACKAGE
+
\ No newline at end of file
diff --git "a/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/.idea/uiDesigner.xml" "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/.idea/uiDesigner.xml"
new file mode 100644
index 0000000000000000000000000000000000000000..e96534fb27b68192f27f985d3879e173ec77adb8
--- /dev/null
+++ "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/.idea/uiDesigner.xml"
@@ -0,0 +1,124 @@
+
+
+
+
+ -
+
+
+ -
+
+
+ -
+
+
+ -
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+ -
+
+
+ -
+
+
+ -
+
+
+ -
+
+
+
+
+ -
+
+
+ -
+
+
+
+
+
\ No newline at end of file
diff --git "a/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/.idea/.gitignore" "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/.idea/.gitignore"
new file mode 100644
index 0000000000000000000000000000000000000000..13566b81b018ad684f3a35fee301741b2734c8f4
--- /dev/null
+++ "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/.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/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/.idea/compiler.xml" "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/.idea/compiler.xml"
new file mode 100644
index 0000000000000000000000000000000000000000..04866d130bd5def279a0be06e50d4c8fc1ed32a6
--- /dev/null
+++ "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/.idea/compiler.xml"
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/.idea/encodings.xml" "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/.idea/encodings.xml"
new file mode 100644
index 0000000000000000000000000000000000000000..aa00ffab7828f4818589659c804ec2cfd99baed3
--- /dev/null
+++ "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/.idea/encodings.xml"
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/.idea/jarRepositories.xml" "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/.idea/jarRepositories.xml"
new file mode 100644
index 0000000000000000000000000000000000000000..712ab9d985c20018a0c97b93d2148ac1ffe588a5
--- /dev/null
+++ "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/.idea/jarRepositories.xml"
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/.idea/misc.xml" "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/.idea/misc.xml"
new file mode 100644
index 0000000000000000000000000000000000000000..681a62ecf61a167e943832cf4fe4fbc730ee0f5d
--- /dev/null
+++ "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/.idea/misc.xml"
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/Spring.iml" "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/Spring.iml"
new file mode 100644
index 0000000000000000000000000000000000000000..b7c16e2dd1f072aaea577ba03ed949c9955a3cb3
--- /dev/null
+++ "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/Spring.iml"
@@ -0,0 +1,43 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/pom.xml" "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/pom.xml"
new file mode 100644
index 0000000000000000000000000000000000000000..a61549ef01c4b9603007282d332ff697d256dfef
--- /dev/null
+++ "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/pom.xml"
@@ -0,0 +1,78 @@
+
+
+
+ 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/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/src/main/java/cn/tedu/homework01/Context.java" "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/src/main/java/cn/tedu/homework01/Context.java"
new file mode 100644
index 0000000000000000000000000000000000000000..e776c28fdb1b4c2042f934427337e4e3572552a7
--- /dev/null
+++ "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/src/main/java/cn/tedu/homework01/Context.java"
@@ -0,0 +1,40 @@
+package cn.tedu.homework01;
+
+public class Context {
+ private Demo demo;
+ private Tiger tiger;
+ private Tom tom;
+
+ public Demo getDemo() {
+ return demo;
+ }
+
+ public void setDemo(Demo demo) {
+ this.demo = demo;
+ }
+
+ public Tiger getTiger() {
+ return tiger;
+ }
+
+ public void setTiger(Tiger tiger) {
+ this.tiger = tiger;
+ }
+
+ public Tom getTom() {
+ return tom;
+ }
+
+ public void setTom(Tom tom) {
+ this.tom = tom;
+ }
+
+ @Override
+ public String toString() {
+ return "Context{" +
+ "demo=" + demo +
+ ", tiger=" + tiger +
+ ", tom=" + tom +
+ '}';
+ }
+}
diff --git "a/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/src/main/java/cn/tedu/homework01/Demo.java" "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/src/main/java/cn/tedu/homework01/Demo.java"
new file mode 100644
index 0000000000000000000000000000000000000000..019bea3a646e3ac691cb40214d4973517e7faef4
--- /dev/null
+++ "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/src/main/java/cn/tedu/homework01/Demo.java"
@@ -0,0 +1,5 @@
+package cn.tedu.homework01;
+
+public interface Demo {
+
+}
diff --git "a/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/src/main/java/cn/tedu/homework01/Test01.java" "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/src/main/java/cn/tedu/homework01/Test01.java"
new file mode 100644
index 0000000000000000000000000000000000000000..4e8b9879f939f008fef7c98869f6e163b3317eb5
--- /dev/null
+++ "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/src/main/java/cn/tedu/homework01/Test01.java"
@@ -0,0 +1,35 @@
+package cn.tedu.homework01;
+import org.junit.Test;
+import org.springframework.context.ApplicationContext;
+import org.springframework.context.support.ClassPathXmlApplicationContext;
+
+public class Test01 {
+ @Test
+ public void test01(){
+ ApplicationContext ac=new ClassPathXmlApplicationContext("beans(byName).xml");
+ Context context= (Context) ac.getBean("context");
+ System.out.println(context);
+ ((ClassPathXmlApplicationContext)ac).close();
+
+ }
+
+ @Test
+ public void test02() {
+
+
+ try {
+ ApplicationContext ac=new ClassPathXmlApplicationContext("beans(byType).xml");
+ Context context= (Context) ac.getBean("context");
+ System.out.println(context);
+ ((ClassPathXmlApplicationContext)ac).close();
+ }catch (Exception e){
+ System.out.println(e);
+
+ }
+
+
+
+ }
+
+
+}
diff --git "a/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/src/main/java/cn/tedu/homework01/Tiger.java" "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/src/main/java/cn/tedu/homework01/Tiger.java"
new file mode 100644
index 0000000000000000000000000000000000000000..b20aac28c29fa7233076ea6bdfd90856f70091da
--- /dev/null
+++ "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/src/main/java/cn/tedu/homework01/Tiger.java"
@@ -0,0 +1,4 @@
+package cn.tedu.homework01;
+
+public class Tiger implements Demo{
+}
diff --git "a/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/src/main/java/cn/tedu/homework01/Tom.java" "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/src/main/java/cn/tedu/homework01/Tom.java"
new file mode 100644
index 0000000000000000000000000000000000000000..b5b246d1e99b302037d339b0d7370acb2ec9b5e2
--- /dev/null
+++ "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/src/main/java/cn/tedu/homework01/Tom.java"
@@ -0,0 +1,5 @@
+package cn.tedu.homework01;
+
+public class Tom implements Demo{
+
+}
diff --git "a/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/src/main/resources/beans(byName).xml" "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/src/main/resources/beans(byName).xml"
new file mode 100644
index 0000000000000000000000000000000000000000..64eb666ad18dedc8eeb529d39fcb08d4df335822
--- /dev/null
+++ "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/src/main/resources/beans(byName).xml"
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/src/main/resources/beans(byType).xml" "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/src/main/resources/beans(byType).xml"
new file mode 100644
index 0000000000000000000000000000000000000000..241a6d01202005882d8d3a997282cddaa4131666
--- /dev/null
+++ "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/src/main/resources/beans(byType).xml"
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/src/main/webapp/WEB-INF/web.xml" "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/src/main/webapp/WEB-INF/web.xml"
new file mode 100644
index 0000000000000000000000000000000000000000..9f88c1f9632445500e3b3688fe477b860f77d8f2
--- /dev/null
+++ "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/src/main/webapp/WEB-INF/web.xml"
@@ -0,0 +1,7 @@
+
+
+
+ Archetype Created Web Application
+
diff --git "a/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/src/main/webapp/index.jsp" "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/src/main/webapp/index.jsp"
new file mode 100644
index 0000000000000000000000000000000000000000..c38169bb958579c635a5c09ee2f379cc5956c0c2
--- /dev/null
+++ "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/src/main/webapp/index.jsp"
@@ -0,0 +1,5 @@
+
+
+Hello World!
+
+
diff --git "a/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/target/classes/beans(byName).xml" "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/target/classes/beans(byName).xml"
new file mode 100644
index 0000000000000000000000000000000000000000..64eb666ad18dedc8eeb529d39fcb08d4df335822
--- /dev/null
+++ "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/target/classes/beans(byName).xml"
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/target/classes/beans(byType).xml" "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/target/classes/beans(byType).xml"
new file mode 100644
index 0000000000000000000000000000000000000000..241a6d01202005882d8d3a997282cddaa4131666
--- /dev/null
+++ "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/target/classes/beans(byType).xml"
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/target/classes/cn/tedu/homework01/Context.class" "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/target/classes/cn/tedu/homework01/Context.class"
new file mode 100644
index 0000000000000000000000000000000000000000..9f57acba82c92a34bed948a8ecd1738fde9d6c3d
Binary files /dev/null and "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/target/classes/cn/tedu/homework01/Context.class" differ
diff --git "a/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/target/classes/cn/tedu/homework01/Demo.class" "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/target/classes/cn/tedu/homework01/Demo.class"
new file mode 100644
index 0000000000000000000000000000000000000000..9bdb655f2060eaeea1ea4120bb37c65eb010c9dd
Binary files /dev/null and "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/target/classes/cn/tedu/homework01/Demo.class" differ
diff --git "a/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/target/classes/cn/tedu/homework01/Test01.class" "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/target/classes/cn/tedu/homework01/Test01.class"
new file mode 100644
index 0000000000000000000000000000000000000000..408bf6b73874f763bddd89286e352b47365d4cf3
Binary files /dev/null and "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/target/classes/cn/tedu/homework01/Test01.class" differ
diff --git "a/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/target/classes/cn/tedu/homework01/Tiger.class" "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/target/classes/cn/tedu/homework01/Tiger.class"
new file mode 100644
index 0000000000000000000000000000000000000000..be27f146d81d8602b18d032eb6e4e4fb71ec031b
Binary files /dev/null and "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/target/classes/cn/tedu/homework01/Tiger.class" differ
diff --git "a/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/target/classes/cn/tedu/homework01/Tom.class" "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/target/classes/cn/tedu/homework01/Tom.class"
new file mode 100644
index 0000000000000000000000000000000000000000..2679e793d4121755f35db6f04b2118f2f7e8b860
Binary files /dev/null and "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/target/classes/cn/tedu/homework01/Tom.class" differ
diff --git "a/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/homework03.iml" "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/homework03.iml"
new file mode 100644
index 0000000000000000000000000000000000000000..c90834f2d607afe55e6104d8aa2cdfffb713f688
--- /dev/null
+++ "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/homework03.iml"
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/src/cn/tedu/my/demo/Main.java" "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/src/cn/tedu/my/demo/Main.java"
new file mode 100644
index 0000000000000000000000000000000000000000..4f48fcbfb3453e3331f0e3ee9484846114ca315e
--- /dev/null
+++ "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/src/cn/tedu/my/demo/Main.java"
@@ -0,0 +1,8 @@
+package cn.tedu.my.demo;
+
+public class Main {
+
+ public static void main(String[] args) {
+ // write your code here
+ }
+}
diff --git "a/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/\346\234\252\345\244\204\347\220\206\344\276\235\350\265\226\345\274\202\345\270\270\346\210\252\345\233\276.docx" "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/\346\234\252\345\244\204\347\220\206\344\276\235\350\265\226\345\274\202\345\270\270\346\210\252\345\233\276.docx"
new file mode 100644
index 0000000000000000000000000000000000000000..06165f2a4fbe6e268fdcbb2603c7bde55d42e908
Binary files /dev/null and "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/2\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/\346\234\252\345\244\204\347\220\206\344\276\235\350\265\226\345\274\202\345\270\270\346\210\252\345\233\276.docx" differ
diff --git "a/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/3\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/.idea/.gitignore" "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/3\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/.idea/.gitignore"
new file mode 100644
index 0000000000000000000000000000000000000000..13566b81b018ad684f3a35fee301741b2734c8f4
--- /dev/null
+++ "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/3\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/.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/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/3\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/.idea/compiler.xml" "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/3\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/.idea/compiler.xml"
new file mode 100644
index 0000000000000000000000000000000000000000..04866d130bd5def279a0be06e50d4c8fc1ed32a6
--- /dev/null
+++ "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/3\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/.idea/compiler.xml"
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/3\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/.idea/encodings.xml" "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/3\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/.idea/encodings.xml"
new file mode 100644
index 0000000000000000000000000000000000000000..63574ec0afb84f7375a0ec33a00da97c7de2310b
--- /dev/null
+++ "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/3\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/.idea/encodings.xml"
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/3\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/.idea/jarRepositories.xml" "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/3\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/.idea/jarRepositories.xml"
new file mode 100644
index 0000000000000000000000000000000000000000..cce8e0f5ffcc4d6b1b9c5149eca38188dab4e1b1
--- /dev/null
+++ "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/3\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/.idea/jarRepositories.xml"
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/3\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/.idea/junitgenerator-prj-settings.xml" "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/3\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/.idea/junitgenerator-prj-settings.xml"
new file mode 100644
index 0000000000000000000000000000000000000000..1ba16f9c56a23fab658c7199d0c1867f742ed263
--- /dev/null
+++ "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/3\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/.idea/junitgenerator-prj-settings.xml"
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/3\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/.idea/misc.xml" "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/3\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/.idea/misc.xml"
new file mode 100644
index 0000000000000000000000000000000000000000..3d9ae53f103c99e3c648a97e8928a44c8325a0c9
--- /dev/null
+++ "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/3\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/.idea/misc.xml"
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/3\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/.idea/uiDesigner.xml" "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/3\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/.idea/uiDesigner.xml"
new file mode 100644
index 0000000000000000000000000000000000000000..e96534fb27b68192f27f985d3879e173ec77adb8
--- /dev/null
+++ "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/3\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/.idea/uiDesigner.xml"
@@ -0,0 +1,124 @@
+
+
+
+
+ -
+
+
+ -
+
+
+ -
+
+
+ -
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+ -
+
+
+ -
+
+
+ -
+
+
+ -
+
+
+
+
+ -
+
+
+ -
+
+
+
+
+
\ No newline at end of file
diff --git "a/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/3\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/pom.xml" "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/3\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/pom.xml"
new file mode 100644
index 0000000000000000000000000000000000000000..9669de50bf0ebce38e584ce4aec48466e06651e4
--- /dev/null
+++ "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/3\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/pom.xml"
@@ -0,0 +1,78 @@
+
+
+
+ 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/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/3\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/src/main/java/cn/tedu/homework03/Demo.java" "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/3\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/src/main/java/cn/tedu/homework03/Demo.java"
new file mode 100644
index 0000000000000000000000000000000000000000..06cf75929c27eb59402e653e8ed95443901ccb74
--- /dev/null
+++ "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/3\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/src/main/java/cn/tedu/homework03/Demo.java"
@@ -0,0 +1,30 @@
+package cn.tedu.homework03;
+
+public class Demo {
+ private String name;
+ 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 "Test01{" +
+ "name='" + name + '\'' +
+ ", age=" + age +
+ '}';
+ }
+}
diff --git "a/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/3\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/src/main/java/cn/tedu/homework03/Test01.java" "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/3\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/src/main/java/cn/tedu/homework03/Test01.java"
new file mode 100644
index 0000000000000000000000000000000000000000..0743bac0260b5df8f6f6ce8eb76c3237aa8c827b
--- /dev/null
+++ "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/3\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/src/main/java/cn/tedu/homework03/Test01.java"
@@ -0,0 +1,17 @@
+package cn.tedu.homework03;
+
+import org.junit.Test;
+import org.springframework.context.ApplicationContext;
+import org.springframework.context.support.ClassPathXmlApplicationContext;
+
+public class Test01 {
+
+ @Test
+ public void test(){
+ ApplicationContext ac=new ClassPathXmlApplicationContext("beans.xml");
+ Demo d=(Demo)ac.getBean("demo");
+ System.out.println(d);
+ ((ClassPathXmlApplicationContext)ac).close();
+ }
+
+}
diff --git "a/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/3\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/src/main/resources/beans.xml" "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/3\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/src/main/resources/beans.xml"
new file mode 100644
index 0000000000000000000000000000000000000000..c0423596f5ec574d002bd9959b4f2c01dfa25dc1
--- /dev/null
+++ "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/3\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/src/main/resources/beans.xml"
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/3\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/src/main/resources/demo.properties" "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/3\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/src/main/resources/demo.properties"
new file mode 100644
index 0000000000000000000000000000000000000000..ec7c654edc8560e2393d208d83e86f5c95871cfb
--- /dev/null
+++ "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/3\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/src/main/resources/demo.properties"
@@ -0,0 +1,2 @@
+name="张三"
+age=18
\ No newline at end of file
diff --git "a/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/3\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/src/main/webapp/WEB-INF/web.xml" "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/3\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/src/main/webapp/WEB-INF/web.xml"
new file mode 100644
index 0000000000000000000000000000000000000000..9f88c1f9632445500e3b3688fe477b860f77d8f2
--- /dev/null
+++ "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/3\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/src/main/webapp/WEB-INF/web.xml"
@@ -0,0 +1,7 @@
+
+
+
+ Archetype Created Web Application
+
diff --git "a/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/3\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/src/main/webapp/index.jsp" "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/3\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/src/main/webapp/index.jsp"
new file mode 100644
index 0000000000000000000000000000000000000000..c38169bb958579c635a5c09ee2f379cc5956c0c2
--- /dev/null
+++ "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/3\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/src/main/webapp/index.jsp"
@@ -0,0 +1,5 @@
+
+
+Hello World!
+
+
diff --git "a/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/3\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/target/classes/beans.xml" "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/3\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/target/classes/beans.xml"
new file mode 100644
index 0000000000000000000000000000000000000000..c0423596f5ec574d002bd9959b4f2c01dfa25dc1
--- /dev/null
+++ "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/3\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/target/classes/beans.xml"
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/3\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/target/classes/cn/tedu/homework03/Demo.class" "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/3\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/target/classes/cn/tedu/homework03/Demo.class"
new file mode 100644
index 0000000000000000000000000000000000000000..45272332b9fd72f05b5efbabace0cb8f02f6876e
Binary files /dev/null and "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/3\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/target/classes/cn/tedu/homework03/Demo.class" differ
diff --git "a/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/3\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/target/classes/cn/tedu/homework03/Test01.class" "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/3\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/target/classes/cn/tedu/homework03/Test01.class"
new file mode 100644
index 0000000000000000000000000000000000000000..1a65e470f07666d6b9e3c0386ead0b367c8f534b
Binary files /dev/null and "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/3\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/target/classes/cn/tedu/homework03/Test01.class" differ
diff --git "a/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/3\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/target/classes/demo.properties" "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/3\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/target/classes/demo.properties"
new file mode 100644
index 0000000000000000000000000000000000000000..ec7c654edc8560e2393d208d83e86f5c95871cfb
--- /dev/null
+++ "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/3\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/Spring/target/classes/demo.properties"
@@ -0,0 +1,2 @@
+name="张三"
+age=18
\ No newline at end of file
diff --git "a/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/3\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/\344\271\261\347\240\201\350\247\243\345\206\263\346\210\252\345\233\276.docx" "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/3\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/\344\271\261\347\240\201\350\247\243\345\206\263\346\210\252\345\233\276.docx"
new file mode 100644
index 0000000000000000000000000000000000000000..9a851360b4dd45ba514ffc664176710425611e6b
Binary files /dev/null and "b/\344\272\216\346\226\207\345\274\272-20202501009-\344\275\234\344\270\232(27\347\217\255-\345\205\250)/3\344\275\234\344\270\232-20202501009-\344\272\216\346\226\207\345\274\272/\344\271\261\347\240\201\350\247\243\345\206\263\346\210\252\345\233\276.docx" differ