diff --git "a/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/1\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/mi.sql" "b/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/1\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/mi.sql"
new file mode 100644
index 0000000000000000000000000000000000000000..0d6cb49152804cd6bef1bfb577bece65403c1d36
--- /dev/null
+++ "b/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/1\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/mi.sql"
@@ -0,0 +1,41 @@
+/*
+ Navicat Premium Data Transfer
+
+ Source Server : Project
+ 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: 17/12/2022 16:05:08
+*/
+
+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 (3, '法外狂徒', '1003', '女', '2003');
+INSERT INTO `权限表` VALUES (4, '赵六', '1004', '男', '2004');
+
+SET FOREIGN_KEY_CHECKS = 1;
diff --git "a/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/1\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/mi\347\232\204MySQL\350\257\255\345\217\245.txt" "b/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/1\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/mi\347\232\204MySQL\350\257\255\345\217\245.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..96ec8d1610f17d36e32fd3e52f3b75d02a3c2ec4
--- /dev/null
+++ "b/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/1\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/mi\347\232\204MySQL\350\257\255\345\217\245.txt"
@@ -0,0 +1,25 @@
+create database MI character set='utf8';
+
+use Mi;
+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 CHARSET = 'utf8';
+
+INSERT INTO `权限表` VALUES (0, NULL, NULL, '女', NULL);
+INSERT INTO `权限表` VALUES (1, '张三', '1001', '男', '2001');
+INSERT INTO `权限表` VALUES (2, '李四', '1002', '男', '2002');
+INSERT INTO `权限表` VALUES (3, '王五', '1003', '男', '2003');
+INSERT INTO `权限表` VALUES (4, '赵六', '1004', '男', '2004');
+
+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/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring1/.idea/.gitignore" "b/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring1/.idea/.gitignore"
new file mode 100644
index 0000000000000000000000000000000000000000..13566b81b018ad684f3a35fee301741b2734c8f4
--- /dev/null
+++ "b/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring1/.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/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring1/.idea/compiler.xml" "b/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring1/.idea/compiler.xml"
new file mode 100644
index 0000000000000000000000000000000000000000..30e2ddf65ec40352a0d33cdc0f6193dfd28bc92f
--- /dev/null
+++ "b/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring1/.idea/compiler.xml"
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring1/.idea/encodings.xml" "b/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring1/.idea/encodings.xml"
new file mode 100644
index 0000000000000000000000000000000000000000..aa00ffab7828f4818589659c804ec2cfd99baed3
--- /dev/null
+++ "b/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring1/.idea/encodings.xml"
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring1/.idea/jarRepositories.xml" "b/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring1/.idea/jarRepositories.xml"
new file mode 100644
index 0000000000000000000000000000000000000000..cce8e0f5ffcc4d6b1b9c5149eca38188dab4e1b1
--- /dev/null
+++ "b/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring1/.idea/jarRepositories.xml"
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring1/.idea/junitgenerator-prj-settings.xml" "b/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring1/.idea/junitgenerator-prj-settings.xml"
new file mode 100644
index 0000000000000000000000000000000000000000..9943a92a172412fd92832d2c65560d3ea5066241
--- /dev/null
+++ "b/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring1/.idea/junitgenerator-prj-settings.xml"
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring1/.idea/misc.xml" "b/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring1/.idea/misc.xml"
new file mode 100644
index 0000000000000000000000000000000000000000..79a352f1e92a127a65b42ab6185343abcbe656e0
--- /dev/null
+++ "b/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring1/.idea/misc.xml"
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring1/pom.xml" "b/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring1/pom.xml"
new file mode 100644
index 0000000000000000000000000000000000000000..4d4f841b6143442fd3b4de0bd8009d8906a44546
--- /dev/null
+++ "b/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring1/pom.xml"
@@ -0,0 +1,77 @@
+
+
+
+ 4.0.0
+
+ org.example
+ Spring1
+ 1.0-SNAPSHOT
+ war
+
+ Spring1 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
+
+
+
+
+ Spring1
+
+
+
+ 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/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring1/src/main/java/cn/tedu/spring/Animol.java" "b/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring1/src/main/java/cn/tedu/spring/Animol.java"
new file mode 100644
index 0000000000000000000000000000000000000000..d0492c49e273f030c6afc6eee857e13b46b9c769
--- /dev/null
+++ "b/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring1/src/main/java/cn/tedu/spring/Animol.java"
@@ -0,0 +1,4 @@
+package cn.tedu.spring;
+
+public interface Animol {
+}
diff --git "a/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring1/src/main/java/cn/tedu/spring/Context.java" "b/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring1/src/main/java/cn/tedu/spring/Context.java"
new file mode 100644
index 0000000000000000000000000000000000000000..4fa0e45071a60abfd327dbd8957d3d1855d95f29
--- /dev/null
+++ "b/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring1/src/main/java/cn/tedu/spring/Context.java"
@@ -0,0 +1,40 @@
+package cn.tedu.spring;
+
+public class Context {
+ private Animol animol;
+ private Tiger tiger;
+ private Tom tom;
+
+ public Animol getAnimol() {
+ return animol;
+ }
+
+ public void setAnimol(Animol animol) {
+ this.animol = animol;
+ }
+
+ 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{" +
+ "animol=" + animol +
+ ", tiger=" + tiger +
+ ", tom=" + tom +
+ '}';
+ }
+}
diff --git "a/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring1/src/main/java/cn/tedu/spring/Test01.java" "b/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring1/src/main/java/cn/tedu/spring/Test01.java"
new file mode 100644
index 0000000000000000000000000000000000000000..7885c56518ee5bad7a43b62d293dd482c5b94c05
--- /dev/null
+++ "b/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring1/src/main/java/cn/tedu/spring/Test01.java"
@@ -0,0 +1,26 @@
+package cn.tedu.spring;
+
+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() {
+
+ ApplicationContext ac=new ClassPathXmlApplicationContext("beans(bytype).xml");
+ Context context= (Context) ac.getBean("context");
+ System.out.println(context);
+ ((ClassPathXmlApplicationContext)ac).close();
+
+ }
+}
diff --git "a/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring1/src/main/java/cn/tedu/spring/Tiger.java" "b/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring1/src/main/java/cn/tedu/spring/Tiger.java"
new file mode 100644
index 0000000000000000000000000000000000000000..dec765e34916cbadcf978ece6ec7fcbcff0d636f
--- /dev/null
+++ "b/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring1/src/main/java/cn/tedu/spring/Tiger.java"
@@ -0,0 +1,4 @@
+package cn.tedu.spring;
+
+public class Tiger implements Animol{
+}
diff --git "a/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring1/src/main/java/cn/tedu/spring/Tom.java" "b/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring1/src/main/java/cn/tedu/spring/Tom.java"
new file mode 100644
index 0000000000000000000000000000000000000000..fccc2a7e22f39b4a26abce57fd487ec819991fed
--- /dev/null
+++ "b/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring1/src/main/java/cn/tedu/spring/Tom.java"
@@ -0,0 +1,4 @@
+package cn.tedu.spring;
+
+public class Tom implements Animol{
+}
diff --git "a/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring1/src/main/resources/beans(byname).xml" "b/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring1/src/main/resources/beans(byname).xml"
new file mode 100644
index 0000000000000000000000000000000000000000..d511d5dddb6c0c067c11167a5d600d3cf1a33fb2
--- /dev/null
+++ "b/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring1/src/main/resources/beans(byname).xml"
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring1/src/main/resources/beans(bytype).xml" "b/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring1/src/main/resources/beans(bytype).xml"
new file mode 100644
index 0000000000000000000000000000000000000000..5af4f1194ba9ba8027d86f09c63be942028db0cd
--- /dev/null
+++ "b/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring1/src/main/resources/beans(bytype).xml"
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring1/src/main/webapp/WEB-INF/web.xml" "b/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring1/src/main/webapp/WEB-INF/web.xml"
new file mode 100644
index 0000000000000000000000000000000000000000..9f88c1f9632445500e3b3688fe477b860f77d8f2
--- /dev/null
+++ "b/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring1/src/main/webapp/WEB-INF/web.xml"
@@ -0,0 +1,7 @@
+
+
+
+ Archetype Created Web Application
+
diff --git "a/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring1/src/main/webapp/index.jsp" "b/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring1/src/main/webapp/index.jsp"
new file mode 100644
index 0000000000000000000000000000000000000000..c38169bb958579c635a5c09ee2f379cc5956c0c2
--- /dev/null
+++ "b/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring1/src/main/webapp/index.jsp"
@@ -0,0 +1,5 @@
+
+
+Hello World!
+
+
diff --git "a/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring1/target/classes/beans(byname).xml" "b/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring1/target/classes/beans(byname).xml"
new file mode 100644
index 0000000000000000000000000000000000000000..d511d5dddb6c0c067c11167a5d600d3cf1a33fb2
--- /dev/null
+++ "b/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring1/target/classes/beans(byname).xml"
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring1/target/classes/beans(bytype).xml" "b/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring1/target/classes/beans(bytype).xml"
new file mode 100644
index 0000000000000000000000000000000000000000..5af4f1194ba9ba8027d86f09c63be942028db0cd
--- /dev/null
+++ "b/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring1/target/classes/beans(bytype).xml"
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring1/target/classes/cn/tedu/spring/Animol.class" "b/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring1/target/classes/cn/tedu/spring/Animol.class"
new file mode 100644
index 0000000000000000000000000000000000000000..f694c13dcf856aa18161c0195350d27fdde2c683
Binary files /dev/null and "b/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring1/target/classes/cn/tedu/spring/Animol.class" differ
diff --git "a/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring1/target/classes/cn/tedu/spring/Context.class" "b/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring1/target/classes/cn/tedu/spring/Context.class"
new file mode 100644
index 0000000000000000000000000000000000000000..8dd3bb7da9e8c4feb99c967e07d9d2ee6eba4091
Binary files /dev/null and "b/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring1/target/classes/cn/tedu/spring/Context.class" differ
diff --git "a/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring1/target/classes/cn/tedu/spring/Test01.class" "b/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring1/target/classes/cn/tedu/spring/Test01.class"
new file mode 100644
index 0000000000000000000000000000000000000000..9d97e44ed55ce9c80da9ead8c32f3112dcf3cdbf
Binary files /dev/null and "b/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring1/target/classes/cn/tedu/spring/Test01.class" differ
diff --git "a/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring1/target/classes/cn/tedu/spring/Tiger.class" "b/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring1/target/classes/cn/tedu/spring/Tiger.class"
new file mode 100644
index 0000000000000000000000000000000000000000..356b2776fc49bdfa6999b2162d86ad5fb7edf345
Binary files /dev/null and "b/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring1/target/classes/cn/tedu/spring/Tiger.class" differ
diff --git "a/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring1/target/classes/cn/tedu/spring/Tom.class" "b/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring1/target/classes/cn/tedu/spring/Tom.class"
new file mode 100644
index 0000000000000000000000000000000000000000..f5318742aca775b6b7f7ac9252a2951099134099
Binary files /dev/null and "b/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring1/target/classes/cn/tedu/spring/Tom.class" differ
diff --git "a/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/\350\277\220\350\241\214\346\210\252\345\233\2761.png" "b/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/\350\277\220\350\241\214\346\210\252\345\233\2761.png"
new file mode 100644
index 0000000000000000000000000000000000000000..293a589033e64622ca8e02c330c15d1b25a49498
Binary files /dev/null and "b/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/\350\277\220\350\241\214\346\210\252\345\233\2761.png" differ
diff --git "a/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/\350\277\220\350\241\214\346\210\252\345\233\2762.png" "b/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/\350\277\220\350\241\214\346\210\252\345\233\2762.png"
new file mode 100644
index 0000000000000000000000000000000000000000..57b3e1f606220b74ff515ef3b773fa0d9b5fe699
Binary files /dev/null and "b/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/\350\277\220\350\241\214\346\210\252\345\233\2762.png" differ
diff --git "a/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring2/.idea/.gitignore" "b/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring2/.idea/.gitignore"
new file mode 100644
index 0000000000000000000000000000000000000000..13566b81b018ad684f3a35fee301741b2734c8f4
--- /dev/null
+++ "b/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring2/.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/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring2/.idea/compiler.xml" "b/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring2/.idea/compiler.xml"
new file mode 100644
index 0000000000000000000000000000000000000000..6fc825f5cb0742dd8aa10ff33d38b7e4f5507709
--- /dev/null
+++ "b/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring2/.idea/compiler.xml"
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring2/.idea/encodings.xml" "b/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring2/.idea/encodings.xml"
new file mode 100644
index 0000000000000000000000000000000000000000..63574ec0afb84f7375a0ec33a00da97c7de2310b
--- /dev/null
+++ "b/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring2/.idea/encodings.xml"
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring2/.idea/jarRepositories.xml" "b/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring2/.idea/jarRepositories.xml"
new file mode 100644
index 0000000000000000000000000000000000000000..cce8e0f5ffcc4d6b1b9c5149eca38188dab4e1b1
--- /dev/null
+++ "b/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring2/.idea/jarRepositories.xml"
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring2/.idea/junitgenerator-prj-settings.xml" "b/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring2/.idea/junitgenerator-prj-settings.xml"
new file mode 100644
index 0000000000000000000000000000000000000000..9943a92a172412fd92832d2c65560d3ea5066241
--- /dev/null
+++ "b/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring2/.idea/junitgenerator-prj-settings.xml"
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring2/.idea/misc.xml" "b/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring2/.idea/misc.xml"
new file mode 100644
index 0000000000000000000000000000000000000000..79a352f1e92a127a65b42ab6185343abcbe656e0
--- /dev/null
+++ "b/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring2/.idea/misc.xml"
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring2/pom.xml" "b/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring2/pom.xml"
new file mode 100644
index 0000000000000000000000000000000000000000..ecfefbae9c54017ae61be71ce62a53b5868d2886
--- /dev/null
+++ "b/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring2/pom.xml"
@@ -0,0 +1,78 @@
+
+
+
+ 4.0.0
+
+ org.example
+ Spring2
+ 1.0-SNAPSHOT
+ war
+
+ Spring2 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
+
+
+
+
+ Spring2
+
+
+
+ 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/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring2/src/main/java/cn/tedu/spring/Demo.java" "b/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring2/src/main/java/cn/tedu/spring/Demo.java"
new file mode 100644
index 0000000000000000000000000000000000000000..21ba84491ec8ff078f1c36b36c78c6e816211579
--- /dev/null
+++ "b/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring2/src/main/java/cn/tedu/spring/Demo.java"
@@ -0,0 +1,40 @@
+package cn.tedu.spring;
+
+import org.springframework.beans.factory.annotation.Value;
+import org.springframework.stereotype.Component;
+
+import java.util.List;
+import java.util.Map;
+import java.util.Properties;
+import java.util.Set;
+@Component
+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 "Demo{" +
+ "name='" + name + '\'' +
+ ", age=" + age +
+ '}';
+ }
+}
diff --git "a/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring2/src/main/java/cn/tedu/spring/Test01.java" "b/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring2/src/main/java/cn/tedu/spring/Test01.java"
new file mode 100644
index 0000000000000000000000000000000000000000..56b7534adc0d4bd2f84fec852d76d6528b40e7dd
--- /dev/null
+++ "b/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring2/src/main/java/cn/tedu/spring/Test01.java"
@@ -0,0 +1,16 @@
+package cn.tedu.spring;
+
+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.xml");
+ Demo demo=(Demo) ac.getBean("demo");
+ System.out.println(demo);
+ ((ClassPathXmlApplicationContext)ac).close();
+ }
+}
diff --git "a/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring2/src/main/resources/beans.xml" "b/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring2/src/main/resources/beans.xml"
new file mode 100644
index 0000000000000000000000000000000000000000..d845a26fa834ba2b19c45c0a52f7254a20fb08f0
--- /dev/null
+++ "b/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring2/src/main/resources/beans.xml"
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring2/src/main/resources/demo.properties" "b/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring2/src/main/resources/demo.properties"
new file mode 100644
index 0000000000000000000000000000000000000000..8fa51de35a3e1f6ce02639740933b84a0bbbe69e
--- /dev/null
+++ "b/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring2/src/main/resources/demo.properties"
@@ -0,0 +1,2 @@
+name=叶东
+age=18
\ No newline at end of file
diff --git "a/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring2/src/main/webapp/WEB-INF/web.xml" "b/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring2/src/main/webapp/WEB-INF/web.xml"
new file mode 100644
index 0000000000000000000000000000000000000000..9f88c1f9632445500e3b3688fe477b860f77d8f2
--- /dev/null
+++ "b/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring2/src/main/webapp/WEB-INF/web.xml"
@@ -0,0 +1,7 @@
+
+
+
+ Archetype Created Web Application
+
diff --git "a/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring2/src/main/webapp/index.jsp" "b/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring2/src/main/webapp/index.jsp"
new file mode 100644
index 0000000000000000000000000000000000000000..c38169bb958579c635a5c09ee2f379cc5956c0c2
--- /dev/null
+++ "b/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring2/src/main/webapp/index.jsp"
@@ -0,0 +1,5 @@
+
+
+Hello World!
+
+
diff --git "a/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring2/target/classes/beans.xml" "b/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring2/target/classes/beans.xml"
new file mode 100644
index 0000000000000000000000000000000000000000..d845a26fa834ba2b19c45c0a52f7254a20fb08f0
--- /dev/null
+++ "b/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring2/target/classes/beans.xml"
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring2/target/classes/cn/tedu/spring/Demo.class" "b/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring2/target/classes/cn/tedu/spring/Demo.class"
new file mode 100644
index 0000000000000000000000000000000000000000..8c27b05d7f9e5a66b4a16e262b651fdeab6d34ee
Binary files /dev/null and "b/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring2/target/classes/cn/tedu/spring/Demo.class" differ
diff --git "a/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring2/target/classes/cn/tedu/spring/Test01.class" "b/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring2/target/classes/cn/tedu/spring/Test01.class"
new file mode 100644
index 0000000000000000000000000000000000000000..6fc00f82e273627de4fc3ff073be4d9e0ab3f713
Binary files /dev/null and "b/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring2/target/classes/cn/tedu/spring/Test01.class" differ
diff --git "a/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring2/target/classes/demo.properties" "b/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring2/target/classes/demo.properties"
new file mode 100644
index 0000000000000000000000000000000000000000..8fa51de35a3e1f6ce02639740933b84a0bbbe69e
--- /dev/null
+++ "b/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/Spring2/target/classes/demo.properties"
@@ -0,0 +1,2 @@
+name=叶东
+age=18
\ No newline at end of file
diff --git "a/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/\350\277\220\350\241\214\346\210\252\345\233\276.png" "b/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/\350\277\220\350\241\214\346\210\252\345\233\276.png"
new file mode 100644
index 0000000000000000000000000000000000000000..4accf3a578292d217069cf9a9c654350d4170505
Binary files /dev/null and "b/\345\217\266\344\270\234-20202501042-\344\275\234\344\270\232\357\274\21027\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501042-\345\217\266\344\270\234/\350\277\220\350\241\214\346\210\252\345\233\276.png" differ