diff --git "a/20202501503-\347\216\213\346\263\275\351\243\236-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/1\344\275\234\344\270\232-20202501503-\347\216\213\346\263\275\351\243\236/zy1.sql" "b/20202501503-\347\216\213\346\263\275\351\243\236-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/1\344\275\234\344\270\232-20202501503-\347\216\213\346\263\275\351\243\236/zy1.sql"
new file mode 100644
index 0000000000000000000000000000000000000000..b7ddf350e67f3dddadcb547b6585e15ad6e32222
--- /dev/null
+++ "b/20202501503-\347\216\213\346\263\275\351\243\236-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/1\344\275\234\344\270\232-20202501503-\347\216\213\346\263\275\351\243\236/zy1.sql"
@@ -0,0 +1,37 @@
+--作业1
+--创建库
+SET NAMES utf8mb4;
+SET FOREIGN_KEY_CHECKS = 0;
+
+--创建表
+DROP TABLE IF EXISTS `biao`;
+CREATE TABLE `biao` (
+ `ID` int(5) NOT NULL,
+ `名字` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
+ `电话` varchar(11) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
+ `性别` varchar(6) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
+ `日期` varchar(20) 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;
+
+--添加五条数据,其中一条只有性别
+INSERT INTO `biao`(`ID`, `名字`, `电话`, `性别`, `日期`) VALUES (1, '杨过', '12345678901', '男', '1999-05-11');
+INSERT INTO `biao`(`ID`, `名字`, `电话`, `性别`, `日期`) VALUES (2, '蔡徐坤', '23456789012', '女', '1245-09-12');
+INSERT INTO `biao`(`ID`, `名字`, `电话`, `性别`, `日期`) VALUES (3, '汪峰', '11223344556', '男', '1985-10-11');
+INSERT INTO `biao`(`ID`, `名字`, `电话`, `性别`, `日期`) VALUES (4, '小龙女', '12233445566', '女', '1988-09-22');
+INSERT INTO `biao`(`ID`, `名字`, `电话`, `性别`, `日期`) VALUES (NULL, NULL, NULL, '女', NULL);
+
+SET FOREIGN_KEY_CHECKS = 1;
+
+-- 查询student表
+select * from biao;
+-- 随机修改2条数据
+-- 1.修改杨过的名字为乔峰
+update biao set 名字="乔峰" where 名字="杨过";
+-- 2.修改第2条的性别为男
+update biao set 性别="女" where ID=2;
+-- 3.按照电话号码删除一条数据
+delete from biao where 电话="11223344556";
+
+
+
diff --git "a/20202501503-\347\216\213\346\263\275\351\243\236-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501503-\347\216\213\346\263\275\351\243\236/.idea/.gitignore" "b/20202501503-\347\216\213\346\263\275\351\243\236-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501503-\347\216\213\346\263\275\351\243\236/.idea/.gitignore"
new file mode 100644
index 0000000000000000000000000000000000000000..13566b81b018ad684f3a35fee301741b2734c8f4
--- /dev/null
+++ "b/20202501503-\347\216\213\346\263\275\351\243\236-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501503-\347\216\213\346\263\275\351\243\236/.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/20202501503-\347\216\213\346\263\275\351\243\236-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501503-\347\216\213\346\263\275\351\243\236/.idea/misc.xml" "b/20202501503-\347\216\213\346\263\275\351\243\236-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501503-\347\216\213\346\263\275\351\243\236/.idea/misc.xml"
new file mode 100644
index 0000000000000000000000000000000000000000..639900d13c6182e452e33a3bd638e70a0146c785
--- /dev/null
+++ "b/20202501503-\347\216\213\346\263\275\351\243\236-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501503-\347\216\213\346\263\275\351\243\236/.idea/misc.xml"
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/20202501503-\347\216\213\346\263\275\351\243\236-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501503-\347\216\213\346\263\275\351\243\236/.idea/modules.xml" "b/20202501503-\347\216\213\346\263\275\351\243\236-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501503-\347\216\213\346\263\275\351\243\236/.idea/modules.xml"
new file mode 100644
index 0000000000000000000000000000000000000000..1ee74e19003177507e9c280e1ba7f24eefecfb15
--- /dev/null
+++ "b/20202501503-\347\216\213\346\263\275\351\243\236-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501503-\347\216\213\346\263\275\351\243\236/.idea/modules.xml"
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/20202501503-\347\216\213\346\263\275\351\243\236-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501503-\347\216\213\346\263\275\351\243\236/.idea/uiDesigner.xml" "b/20202501503-\347\216\213\346\263\275\351\243\236-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501503-\347\216\213\346\263\275\351\243\236/.idea/uiDesigner.xml"
new file mode 100644
index 0000000000000000000000000000000000000000..e96534fb27b68192f27f985d3879e173ec77adb8
--- /dev/null
+++ "b/20202501503-\347\216\213\346\263\275\351\243\236-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501503-\347\216\213\346\263\275\351\243\236/.idea/uiDesigner.xml"
@@ -0,0 +1,124 @@
+
+
+
+
+ -
+
+
+ -
+
+
+ -
+
+
+ -
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+ -
+
+
+ -
+
+
+ -
+
+
+ -
+
+
+
+
+ -
+
+
+ -
+
+
+
+
+
\ No newline at end of file
diff --git "a/20202501503-\347\216\213\346\263\275\351\243\236-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501503-\347\216\213\346\263\275\351\243\236/bean.xml" "b/20202501503-\347\216\213\346\263\275\351\243\236-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501503-\347\216\213\346\263\275\351\243\236/bean.xml"
new file mode 100644
index 0000000000000000000000000000000000000000..fba4e095ec2d2b1d60c2e3cf7630ca49039ca06b
--- /dev/null
+++ "b/20202501503-\347\216\213\346\263\275\351\243\236-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501503-\347\216\213\346\263\275\351\243\236/bean.xml"
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/20202501503-\347\216\213\346\263\275\351\243\236-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501503-\347\216\213\346\263\275\351\243\236/homework2/s1.java" "b/20202501503-\347\216\213\346\263\275\351\243\236-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501503-\347\216\213\346\263\275\351\243\236/homework2/s1.java"
new file mode 100644
index 0000000000000000000000000000000000000000..19a7ae3ae38c12e735fdc41257fe7e455e2f7db9
--- /dev/null
+++ "b/20202501503-\347\216\213\346\263\275\351\243\236-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501503-\347\216\213\346\263\275\351\243\236/homework2/s1.java"
@@ -0,0 +1,30 @@
+package homework2;
+
+public class s1 {
+ 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 "s1{" +
+ "name='" + name + '\'' +
+ ", age=" + age +
+ '}';
+ }
+}
diff --git "a/20202501503-\347\216\213\346\263\275\351\243\236-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501503-\347\216\213\346\263\275\351\243\236/homework2/s2.java" "b/20202501503-\347\216\213\346\263\275\351\243\236-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501503-\347\216\213\346\263\275\351\243\236/homework2/s2.java"
new file mode 100644
index 0000000000000000000000000000000000000000..1dc497d1dd4524089f9f2df7bb7db078c73fff32
--- /dev/null
+++ "b/20202501503-\347\216\213\346\263\275\351\243\236-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501503-\347\216\213\346\263\275\351\243\236/homework2/s2.java"
@@ -0,0 +1,30 @@
+package homework2;
+
+public class s2 {
+ private String name;
+ private String age;
+
+ public String getName() {
+ return name;
+ }
+
+ public void setName(String name) {
+ this.name = name;
+ }
+
+ public String getAge() {
+ return age;
+ }
+
+ public void setAge(String age) {
+ this.age = age;
+ }
+
+ @Override
+ public String toString() {
+ return "s2{" +
+ "name='" + name + '\'' +
+ ", age='" + age + '\'' +
+ '}';
+ }
+}
diff --git "a/20202501503-\347\216\213\346\263\275\351\243\236-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501503-\347\216\213\346\263\275\351\243\236/homework2/test.java" "b/20202501503-\347\216\213\346\263\275\351\243\236-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501503-\347\216\213\346\263\275\351\243\236/homework2/test.java"
new file mode 100644
index 0000000000000000000000000000000000000000..c6bb16be3939acbedacf34304f3a03892e0f41b2
--- /dev/null
+++ "b/20202501503-\347\216\213\346\263\275\351\243\236-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501503-\347\216\213\346\263\275\351\243\236/homework2/test.java"
@@ -0,0 +1,16 @@
+package homework2;
+
+import org.junit.Test;
+import org.springframework.context.ApplicationContext;
+import org.springframework.context.support.ClassPathXmlApplicationContext;
+
+public class test {
+
+ @Test
+ public void test1(){
+ ApplicationContext ac=new ClassPathXmlApplicationContext("bean.xml");
+ xz s=(xz)ac.getBean("xz");
+ System.out.println(s);
+ ((ClassPathXmlApplicationContext)ac).close();
+ }
+}
diff --git "a/20202501503-\347\216\213\346\263\275\351\243\236-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501503-\347\216\213\346\263\275\351\243\236/homework2/xz.java" "b/20202501503-\347\216\213\346\263\275\351\243\236-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501503-\347\216\213\346\263\275\351\243\236/homework2/xz.java"
new file mode 100644
index 0000000000000000000000000000000000000000..31039fa1cc1e4ec5f39264ca2a77a99b2558722c
--- /dev/null
+++ "b/20202501503-\347\216\213\346\263\275\351\243\236-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501503-\347\216\213\346\263\275\351\243\236/homework2/xz.java"
@@ -0,0 +1,30 @@
+package homework2;
+
+public class xz {
+ private s1 cat;
+ private s2 dog;
+
+ public s1 getCat() {
+ return cat;
+ }
+
+ public void setCat(s1 cat) {
+ this.cat = cat;
+ }
+
+ public s2 getDog() {
+ return dog;
+ }
+
+ public void setDog(s2 dog) {
+ this.dog = dog;
+ }
+
+ @Override
+ public String toString() {
+ return "xz{" +
+ "cat=" + cat +
+ ", dog=" + dog +
+ '}';
+ }
+}
diff --git "a/20202501503-\347\216\213\346\263\275\351\243\236-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501503-\347\216\213\346\263\275\351\243\236/\344\275\234\344\270\2322.iml" "b/20202501503-\347\216\213\346\263\275\351\243\236-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501503-\347\216\213\346\263\275\351\243\236/\344\275\234\344\270\2322.iml"
new file mode 100644
index 0000000000000000000000000000000000000000..b107a2dd81165eaaf682ad3da030668b937fbb6c
--- /dev/null
+++ "b/20202501503-\347\216\213\346\263\275\351\243\236-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/2\344\275\234\344\270\232-20202501503-\347\216\213\346\263\275\351\243\236/\344\275\234\344\270\2322.iml"
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/20202501503-\347\216\213\346\263\275\351\243\236-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501503-\347\216\213\346\263\275\351\243\236/.idea/.gitignore" "b/20202501503-\347\216\213\346\263\275\351\243\236-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501503-\347\216\213\346\263\275\351\243\236/.idea/.gitignore"
new file mode 100644
index 0000000000000000000000000000000000000000..13566b81b018ad684f3a35fee301741b2734c8f4
--- /dev/null
+++ "b/20202501503-\347\216\213\346\263\275\351\243\236-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501503-\347\216\213\346\263\275\351\243\236/.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/20202501503-\347\216\213\346\263\275\351\243\236-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501503-\347\216\213\346\263\275\351\243\236/.idea/misc.xml" "b/20202501503-\347\216\213\346\263\275\351\243\236-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501503-\347\216\213\346\263\275\351\243\236/.idea/misc.xml"
new file mode 100644
index 0000000000000000000000000000000000000000..639900d13c6182e452e33a3bd638e70a0146c785
--- /dev/null
+++ "b/20202501503-\347\216\213\346\263\275\351\243\236-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501503-\347\216\213\346\263\275\351\243\236/.idea/misc.xml"
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/20202501503-\347\216\213\346\263\275\351\243\236-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501503-\347\216\213\346\263\275\351\243\236/.idea/modules.xml" "b/20202501503-\347\216\213\346\263\275\351\243\236-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501503-\347\216\213\346\263\275\351\243\236/.idea/modules.xml"
new file mode 100644
index 0000000000000000000000000000000000000000..9275e0c710125d266621c3554c9c33619fd1cfe2
--- /dev/null
+++ "b/20202501503-\347\216\213\346\263\275\351\243\236-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501503-\347\216\213\346\263\275\351\243\236/.idea/modules.xml"
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/20202501503-\347\216\213\346\263\275\351\243\236-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501503-\347\216\213\346\263\275\351\243\236/.idea/uiDesigner.xml" "b/20202501503-\347\216\213\346\263\275\351\243\236-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501503-\347\216\213\346\263\275\351\243\236/.idea/uiDesigner.xml"
new file mode 100644
index 0000000000000000000000000000000000000000..e96534fb27b68192f27f985d3879e173ec77adb8
--- /dev/null
+++ "b/20202501503-\347\216\213\346\263\275\351\243\236-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501503-\347\216\213\346\263\275\351\243\236/.idea/uiDesigner.xml"
@@ -0,0 +1,124 @@
+
+
+
+
+ -
+
+
+ -
+
+
+ -
+
+
+ -
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+ -
+
+
+ -
+
+
+ -
+
+
+ -
+
+
+
+
+ -
+
+
+ -
+
+
+
+
+
\ No newline at end of file
diff --git "a/20202501503-\347\216\213\346\263\275\351\243\236-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501503-\347\216\213\346\263\275\351\243\236/bean.xml" "b/20202501503-\347\216\213\346\263\275\351\243\236-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501503-\347\216\213\346\263\275\351\243\236/bean.xml"
new file mode 100644
index 0000000000000000000000000000000000000000..26746d75b5377cce95f3cb2f6584b84a31ddf2c0
--- /dev/null
+++ "b/20202501503-\347\216\213\346\263\275\351\243\236-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501503-\347\216\213\346\263\275\351\243\236/bean.xml"
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/20202501503-\347\216\213\346\263\275\351\243\236-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501503-\347\216\213\346\263\275\351\243\236/classpeople.properties" "b/20202501503-\347\216\213\346\263\275\351\243\236-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501503-\347\216\213\346\263\275\351\243\236/classpeople.properties"
new file mode 100644
index 0000000000000000000000000000000000000000..5d0f51c4a0535004b1c9787f459e039e0b251a7d
--- /dev/null
+++ "b/20202501503-\347\216\213\346\263\275\351\243\236-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501503-\347\216\213\346\263\275\351\243\236/classpeople.properties"
@@ -0,0 +1,4 @@
+
+stu_name=???
+stu_age=21
+class_xh=24
\ No newline at end of file
diff --git "a/20202501503-\347\216\213\346\263\275\351\243\236-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501503-\347\216\213\346\263\275\351\243\236/homework3/classpeople.java" "b/20202501503-\347\216\213\346\263\275\351\243\236-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501503-\347\216\213\346\263\275\351\243\236/homework3/classpeople.java"
new file mode 100644
index 0000000000000000000000000000000000000000..aa6a44d45894481fa151b4a60bc371ed6c2fcd71
--- /dev/null
+++ "b/20202501503-\347\216\213\346\263\275\351\243\236-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501503-\347\216\213\346\263\275\351\243\236/homework3/classpeople.java"
@@ -0,0 +1,48 @@
+package homework3;
+
+import org.springframework.beans.factory.annotation.Value;
+
+import java.util.Properties;
+
+public class classpeople {
+ @Value("${stu_name}")
+ private String name;
+ @Value("${stu_age}")
+ private String age;
+ @Value("${class_xh}")
+ private String class_xh;
+
+ private Properties properties;
+ public String getName() {
+ return name;
+ }
+
+ public void setName(String name) {
+ this.name = name;
+ }
+
+ public String getAge() {
+ return age;
+ }
+
+ public void setAge(String age) {
+ this.age = age;
+ }
+
+ public String getClass_xh() {
+ return class_xh;
+ }
+
+ public void setClass_xh(String class_xh) {
+ this.class_xh = class_xh;
+ }
+
+ @Override
+ public String toString() {
+ return "classpeople{" +
+ "name='" + name + '\'' +
+ ", age='" + age + '\'' +
+ ", class_xh='" + class_xh + '\'' +
+ '}';
+ }
+}
diff --git "a/20202501503-\347\216\213\346\263\275\351\243\236-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501503-\347\216\213\346\263\275\351\243\236/homework3/classpeople.properties" "b/20202501503-\347\216\213\346\263\275\351\243\236-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501503-\347\216\213\346\263\275\351\243\236/homework3/classpeople.properties"
new file mode 100644
index 0000000000000000000000000000000000000000..5d0f51c4a0535004b1c9787f459e039e0b251a7d
--- /dev/null
+++ "b/20202501503-\347\216\213\346\263\275\351\243\236-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501503-\347\216\213\346\263\275\351\243\236/homework3/classpeople.properties"
@@ -0,0 +1,4 @@
+
+stu_name=???
+stu_age=21
+class_xh=24
\ No newline at end of file
diff --git "a/20202501503-\347\216\213\346\263\275\351\243\236-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501503-\347\216\213\346\263\275\351\243\236/homework3/test.java" "b/20202501503-\347\216\213\346\263\275\351\243\236-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501503-\347\216\213\346\263\275\351\243\236/homework3/test.java"
new file mode 100644
index 0000000000000000000000000000000000000000..6662f5c2d4f1a6599d95925f263513a2080a56e0
--- /dev/null
+++ "b/20202501503-\347\216\213\346\263\275\351\243\236-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501503-\347\216\213\346\263\275\351\243\236/homework3/test.java"
@@ -0,0 +1,16 @@
+package homework3;
+
+import homework2.wxs;
+import org.junit.Test;
+import org.springframework.context.ApplicationContext;
+import org.springframework.context.support.ClassPathXmlApplicationContext;
+
+public class test {
+ @Test
+ public void test1(){
+ ApplicationContext ac=new ClassPathXmlApplicationContext("bean.xml");
+ classpeople stu=(classpeople)ac.getBean("stu");
+ System.out.println(stu);
+ ((ClassPathXmlApplicationContext)ac).close();
+ }
+}
diff --git "a/20202501503-\347\216\213\346\263\275\351\243\236-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501503-\347\216\213\346\263\275\351\243\236/\344\275\234\344\270\2323.iml" "b/20202501503-\347\216\213\346\263\275\351\243\236-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501503-\347\216\213\346\263\275\351\243\236/\344\275\234\344\270\2323.iml"
new file mode 100644
index 0000000000000000000000000000000000000000..b107a2dd81165eaaf682ad3da030668b937fbb6c
--- /dev/null
+++ "b/20202501503-\347\216\213\346\263\275\351\243\236-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/3\344\275\234\344\270\232-20202501503-\347\216\213\346\263\275\351\243\236/\344\275\234\344\270\2323.iml"
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file