diff --git "a/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/Lsc.sql" "b/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/Lsc.sql" new file mode 100644 index 0000000000000000000000000000000000000000..fcf7a163047b66adde3c8fa8b6b20dc097def3dd --- /dev/null +++ "b/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/Lsc.sql" @@ -0,0 +1,27 @@ +#先丢弃原表 +drop table if EXISTS `权限表`; + +#创建新的表 +CREATE table if not exists `权限表`( +`id` int(20), +`名字` varchar(255), +`电话` varchar(255), +`性别` varchar(10), +`日期` date +)ENGINE INNODB CHARSET='gbk'; + +#添加5行数据,其中一行只添加性别 +insert into `权限表` values(1,"傅俊豪","15099572107","男","2002-05-11"); +insert into `权限表` (id,名字,电话,性别,日期) value(NULL,NULL,NULL,"男",NULL); +insert into `权限表` values(3,"罗梓月","15025423909","女","2002-04-11"); +insert into `权限表` values(4,"JUKO","15023423708","女","1996-03-14"); +insert into `权限表` values(5,"里斯","15021234509","男","1988-07-26"); + +#修改两条数据,第一次修改名字,第二次修改性别 +update `权限表` set 名字="张三" where 名字="里斯"; +update `权限表` set 性别="女" where 名字="张三"; + +#删除一条数据,要求:按照电话号码删除 +DELETE FROM `权限表` WHERE 电话="15023423708"; + + diff --git "a/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\232\344\272\214/.idea/.gitignore" "b/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\232\344\272\214/.idea/.gitignore" new file mode 100644 index 0000000000000000000000000000000000000000..35410cacdc5e87f985c93a96520f5e11a5c822e4 --- /dev/null +++ "b/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\232\344\272\214/.idea/.gitignore" @@ -0,0 +1,8 @@ +# 默认忽略的文件 +/shelf/ +/workspace.xml +# 基于编辑器的 HTTP 客户端请求 +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git "a/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\232\344\272\214/.idea/compiler.xml" "b/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\232\344\272\214/.idea/compiler.xml" new file mode 100644 index 0000000000000000000000000000000000000000..193f46d19653a46c78a8d2077fadf330c3a2119d --- /dev/null +++ "b/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\232\344\272\214/.idea/compiler.xml" @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git "a/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\232\344\272\214/.idea/encodings.xml" "b/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\232\344\272\214/.idea/encodings.xml" new file mode 100644 index 0000000000000000000000000000000000000000..aa00ffab7828f4818589659c804ec2cfd99baed3 --- /dev/null +++ "b/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\232\344\272\214/.idea/encodings.xml" @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git "a/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\232\344\272\214/.idea/jarRepositories.xml" "b/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\232\344\272\214/.idea/jarRepositories.xml" new file mode 100644 index 0000000000000000000000000000000000000000..712ab9d985c20018a0c97b93d2148ac1ffe588a5 --- /dev/null +++ "b/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\232\344\272\214/.idea/jarRepositories.xml" @@ -0,0 +1,20 @@ + + + + + + + + + + + \ No newline at end of file diff --git "a/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\232\344\272\214/.idea/misc.xml" "b/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\232\344\272\214/.idea/misc.xml" new file mode 100644 index 0000000000000000000000000000000000000000..919019a77f3f04b2c131a0320bb18f4a9719eaec --- /dev/null +++ "b/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\232\344\272\214/.idea/misc.xml" @@ -0,0 +1,17 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git "a/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\232\344\272\214/.idea/modules.xml" "b/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\232\344\272\214/.idea/modules.xml" new file mode 100644 index 0000000000000000000000000000000000000000..9930dbc179597839c419d08ae2cba4b62e6f39e2 --- /dev/null +++ "b/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\232\344\272\214/.idea/modules.xml" @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git "a/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\232\344\272\214/.idea/\344\275\234\344\270\232\344\272\214.iml" "b/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\232\344\272\214/.idea/\344\275\234\344\270\232\344\272\214.iml" new file mode 100644 index 0000000000000000000000000000000000000000..d6ebd4805981b8400db3e3291c74a743fef9a824 --- /dev/null +++ "b/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\232\344\272\214/.idea/\344\275\234\344\270\232\344\272\214.iml" @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git "a/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\232\344\272\214/pom.xml" "b/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\232\344\272\214/pom.xml" new file mode 100644 index 0000000000000000000000000000000000000000..bafe235bc8fe6af70c5dae528536f20445ca5593 --- /dev/null +++ "b/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\232\344\272\214/pom.xml" @@ -0,0 +1,105 @@ + + + + 4.0.0 + + org.example + homework2 + 1.0-SNAPSHOT + war + + homework2 Maven Webapp + + http://www.example.com + + + UTF-8 + 1.7 + 1.7 + + + + + junit + junit + 4.11 + test + + + + org.springframework + spring-context + 5.3.18 + + + org.junit.jupiter + junit-jupiter + RELEASE + compile + + + org.testng + testng + RELEASE + compile + + + junit + junit + 4.12 + compile + + + + org.slf4j + slf4j-log4j12 + 1.7.21 + test + + + + + log4j + log4j + 1.2.17 + + + + + homework2 + + + + 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/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\232\344\272\214/src/main/java/AWP.java" "b/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\232\344\272\214/src/main/java/AWP.java" new file mode 100644 index 0000000000000000000000000000000000000000..ed2602761a3b125a9481da4b1f01f1c3b98526e2 --- /dev/null +++ "b/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\232\344\272\214/src/main/java/AWP.java" @@ -0,0 +1,2 @@ +public class AWP { +} diff --git "a/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\232\344\272\214/src/main/java/HK417.java" "b/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\232\344\272\214/src/main/java/HK417.java" new file mode 100644 index 0000000000000000000000000000000000000000..2138ff4eaaa3e0a6e3051e8395374a04e2ab45a7 --- /dev/null +++ "b/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\232\344\272\214/src/main/java/HK417.java" @@ -0,0 +1,2 @@ +public class HK417 { +} diff --git "a/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\232\344\272\214/src/main/java/M4A4.java" "b/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\232\344\272\214/src/main/java/M4A4.java" new file mode 100644 index 0000000000000000000000000000000000000000..73400cd8a60d54b2efd99a7634e50774d719b164 --- /dev/null +++ "b/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\232\344\272\214/src/main/java/M4A4.java" @@ -0,0 +1,2 @@ +public class M4A4 { +} diff --git "a/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\232\344\272\214/src/main/java/Test.java" "b/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\232\344\272\214/src/main/java/Test.java" new file mode 100644 index 0000000000000000000000000000000000000000..e541fd09c652936b6343bffee20dc60219e49ce9 --- /dev/null +++ "b/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\232\344\272\214/src/main/java/Test.java" @@ -0,0 +1,12 @@ +import org.springframework.context.ApplicationContext; +import org.springframework.context.support.ClassPathXmlApplicationContext; + +public class Test { + @org.junit.Test + public void test01(){ + ApplicationContext ac=new ClassPathXmlApplicationContext("job2beans.xml"); + AWP awp=(Man)ac.getBean("AWP"); + System.out.println(awp); + ((ClassPathXmlApplicationContext)ac).close(); + } +} \ No newline at end of file diff --git "a/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\232\344\272\214/src/main/resources/job2beans.xml" "b/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\232\344\272\214/src/main/resources/job2beans.xml" new file mode 100644 index 0000000000000000000000000000000000000000..82e7719ce3d85a1cd61a98c2ea21a42f22fe7468 --- /dev/null +++ "b/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\232\344\272\214/src/main/resources/job2beans.xml" @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git "a/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\232\344\272\214/src/main/webapp/WEB-INF/web.xml" "b/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\232\344\272\214/src/main/webapp/WEB-INF/web.xml" new file mode 100644 index 0000000000000000000000000000000000000000..9f88c1f9632445500e3b3688fe477b860f77d8f2 --- /dev/null +++ "b/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\232\344\272\214/src/main/webapp/WEB-INF/web.xml" @@ -0,0 +1,7 @@ + + + + Archetype Created Web Application + diff --git "a/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\232\344\272\214/src/main/webapp/index.jsp" "b/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\232\344\272\214/src/main/webapp/index.jsp" new file mode 100644 index 0000000000000000000000000000000000000000..c38169bb958579c635a5c09ee2f379cc5956c0c2 --- /dev/null +++ "b/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\232\344\272\214/src/main/webapp/index.jsp" @@ -0,0 +1,5 @@ + + +

Hello World!

+ + diff --git "a/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\232\344\272\214/\344\275\234\344\270\232\344\272\214.zip" "b/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\232\344\272\214/\344\275\234\344\270\232\344\272\214.zip" new file mode 100644 index 0000000000000000000000000000000000000000..8c14d4b6ede37f219c10a0ab070f3c21969efaf9 Binary files /dev/null and "b/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\232\344\272\214/\344\275\234\344\270\232\344\272\214.zip" differ diff --git "a/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\2323/.idea/.gitignore" "b/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\2323/.idea/.gitignore" new file mode 100644 index 0000000000000000000000000000000000000000..35410cacdc5e87f985c93a96520f5e11a5c822e4 --- /dev/null +++ "b/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\2323/.idea/.gitignore" @@ -0,0 +1,8 @@ +# 默认忽略的文件 +/shelf/ +/workspace.xml +# 基于编辑器的 HTTP 客户端请求 +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git "a/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\2323/.idea/compiler.xml" "b/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\2323/.idea/compiler.xml" new file mode 100644 index 0000000000000000000000000000000000000000..a5da43609fb281c400f5f9020872c41ce65b3b49 --- /dev/null +++ "b/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\2323/.idea/compiler.xml" @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git "a/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\2323/.idea/encodings.xml" "b/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\2323/.idea/encodings.xml" new file mode 100644 index 0000000000000000000000000000000000000000..aa00ffab7828f4818589659c804ec2cfd99baed3 --- /dev/null +++ "b/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\2323/.idea/encodings.xml" @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git "a/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\2323/.idea/jarRepositories.xml" "b/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\2323/.idea/jarRepositories.xml" new file mode 100644 index 0000000000000000000000000000000000000000..712ab9d985c20018a0c97b93d2148ac1ffe588a5 --- /dev/null +++ "b/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\2323/.idea/jarRepositories.xml" @@ -0,0 +1,20 @@ + + + + + + + + + + + \ No newline at end of file diff --git "a/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\2323/.idea/misc.xml" "b/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\2323/.idea/misc.xml" new file mode 100644 index 0000000000000000000000000000000000000000..919019a77f3f04b2c131a0320bb18f4a9719eaec --- /dev/null +++ "b/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\2323/.idea/misc.xml" @@ -0,0 +1,17 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git "a/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\2323/.idea/uiDesigner.xml" "b/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\2323/.idea/uiDesigner.xml" new file mode 100644 index 0000000000000000000000000000000000000000..e96534fb27b68192f27f985d3879e173ec77adb8 --- /dev/null +++ "b/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\2323/.idea/uiDesigner.xml" @@ -0,0 +1,124 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git "a/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\2323/homework3.iml" "b/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\2323/homework3.iml" new file mode 100644 index 0000000000000000000000000000000000000000..78b2cc53b203f0b97534bb1184cdc7b474339fb4 --- /dev/null +++ "b/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\2323/homework3.iml" @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git "a/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\2323/lib/aopalliance-1.0.jar" "b/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\2323/lib/aopalliance-1.0.jar" new file mode 100644 index 0000000000000000000000000000000000000000..578b1a0c359ef88a84461bdb91d9d0041afd54de Binary files /dev/null and "b/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\2323/lib/aopalliance-1.0.jar" differ diff --git "a/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\2323/lib/commons-logging-1.2.jar" "b/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\2323/lib/commons-logging-1.2.jar" new file mode 100644 index 0000000000000000000000000000000000000000..93a3b9f6db406c84e270e19b9a5e70f2e27ca513 Binary files /dev/null and "b/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\2323/lib/commons-logging-1.2.jar" differ diff --git "a/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\2323/lib/spring-aop-5.2.3.RELEASE.jar" "b/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\2323/lib/spring-aop-5.2.3.RELEASE.jar" new file mode 100644 index 0000000000000000000000000000000000000000..b4c9ae0ae9223f670596bcb36ec909639c394e55 Binary files /dev/null and "b/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\2323/lib/spring-aop-5.2.3.RELEASE.jar" differ diff --git "a/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\2323/lib/spring-aspects-5.2.3.RELEASE.jar" "b/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\2323/lib/spring-aspects-5.2.3.RELEASE.jar" new file mode 100644 index 0000000000000000000000000000000000000000..bc57dbc978ec3b8b571ac32be6aa15a0956ac3a8 Binary files /dev/null and "b/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\2323/lib/spring-aspects-5.2.3.RELEASE.jar" differ diff --git "a/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\2323/lib/spring-beans-5.2.3.RELEASE.jar" "b/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\2323/lib/spring-beans-5.2.3.RELEASE.jar" new file mode 100644 index 0000000000000000000000000000000000000000..839ca4340dc1c1c46c9f86407effad01e3344091 Binary files /dev/null and "b/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\2323/lib/spring-beans-5.2.3.RELEASE.jar" differ diff --git "a/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\2323/lib/spring-context-5.2.3.RELEASE.jar" "b/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\2323/lib/spring-context-5.2.3.RELEASE.jar" new file mode 100644 index 0000000000000000000000000000000000000000..72ead3172ab8ec401815e1d9a9678d111349abef Binary files /dev/null and "b/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\2323/lib/spring-context-5.2.3.RELEASE.jar" differ diff --git "a/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\2323/lib/spring-context-support-5.2.3.RELEASE.jar" "b/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\2323/lib/spring-context-support-5.2.3.RELEASE.jar" new file mode 100644 index 0000000000000000000000000000000000000000..2352504672b3ce635009867c093c54bac9c306e1 Binary files /dev/null and "b/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\2323/lib/spring-context-support-5.2.3.RELEASE.jar" differ diff --git "a/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\2323/lib/spring-core-5.2.3.RELEASE.jar" "b/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\2323/lib/spring-core-5.2.3.RELEASE.jar" new file mode 100644 index 0000000000000000000000000000000000000000..00f474937ff08a59ef9ad69ac207b8f533eae90a Binary files /dev/null and "b/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\2323/lib/spring-core-5.2.3.RELEASE.jar" differ diff --git "a/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\2323/lib/spring-expression-5.2.3.RELEASE.jar" "b/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\2323/lib/spring-expression-5.2.3.RELEASE.jar" new file mode 100644 index 0000000000000000000000000000000000000000..abc4420d991cbe3d2c9b8805b061addc1d5c8f9c Binary files /dev/null and "b/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\2323/lib/spring-expression-5.2.3.RELEASE.jar" differ diff --git "a/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\2323/lib/spring-instrument-5.2.3.RELEASE.jar" "b/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\2323/lib/spring-instrument-5.2.3.RELEASE.jar" new file mode 100644 index 0000000000000000000000000000000000000000..7847f47630dca238cce1117c64a6e91f467f5ac1 Binary files /dev/null and "b/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\2323/lib/spring-instrument-5.2.3.RELEASE.jar" differ diff --git "a/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\2323/lib/spring-jdbc-5.2.3.RELEASE.jar" "b/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\2323/lib/spring-jdbc-5.2.3.RELEASE.jar" new file mode 100644 index 0000000000000000000000000000000000000000..83dcd5093d9cdbe971824a9d11ee8122d7baf5bd Binary files /dev/null and "b/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\2323/lib/spring-jdbc-5.2.3.RELEASE.jar" differ diff --git "a/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\2323/lib/spring-jms-5.2.3.RELEASE.jar" "b/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\2323/lib/spring-jms-5.2.3.RELEASE.jar" new file mode 100644 index 0000000000000000000000000000000000000000..ccdb34619a4628052e2a0a1fcf39a01e23896f8f Binary files /dev/null and "b/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\2323/lib/spring-jms-5.2.3.RELEASE.jar" differ diff --git "a/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\2323/lib/spring-messaging-5.2.3.RELEASE.jar" "b/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\2323/lib/spring-messaging-5.2.3.RELEASE.jar" new file mode 100644 index 0000000000000000000000000000000000000000..ce353c6ee8bf106ba161756e6b557e4039f88884 Binary files /dev/null and "b/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\2323/lib/spring-messaging-5.2.3.RELEASE.jar" differ diff --git "a/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\2323/lib/spring-orm-5.2.3.RELEASE.jar" "b/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\2323/lib/spring-orm-5.2.3.RELEASE.jar" new file mode 100644 index 0000000000000000000000000000000000000000..c1e5c9ff6bfa6e0c926c98866028afea88a0a3d7 Binary files /dev/null and "b/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\2323/lib/spring-orm-5.2.3.RELEASE.jar" differ diff --git "a/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\2323/lib/spring-oxm-5.2.3.RELEASE.jar" "b/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\2323/lib/spring-oxm-5.2.3.RELEASE.jar" new file mode 100644 index 0000000000000000000000000000000000000000..a2546551d471670044a6bda6d91e0323a314c14f Binary files /dev/null and "b/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\2323/lib/spring-oxm-5.2.3.RELEASE.jar" differ diff --git "a/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\2323/lib/spring-test-5.2.3.RELEASE.jar" "b/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\2323/lib/spring-test-5.2.3.RELEASE.jar" new file mode 100644 index 0000000000000000000000000000000000000000..13c7c94fbfec27b6bc431df188570233b0335c0c Binary files /dev/null and "b/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\2323/lib/spring-test-5.2.3.RELEASE.jar" differ diff --git "a/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\2323/lib/spring-tx-5.2.3.RELEASE.jar" "b/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\2323/lib/spring-tx-5.2.3.RELEASE.jar" new file mode 100644 index 0000000000000000000000000000000000000000..47d64ddd0b900d99e3f5476b8a97c0ce972aa17a Binary files /dev/null and "b/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\2323/lib/spring-tx-5.2.3.RELEASE.jar" differ diff --git "a/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\2323/pom.xml" "b/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\2323/pom.xml" new file mode 100644 index 0000000000000000000000000000000000000000..a640815058b1baee9c0186c4ebc5e30d769a6672 --- /dev/null +++ "b/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\2323/pom.xml" @@ -0,0 +1,105 @@ + + + + 4.0.0 + + org.example + homework3 + 1.0-SNAPSHOT + war + + homework3 Maven Webapp + + http://www.example.com + + + UTF-8 + 1.7 + 1.7 + + + + + junit + junit + 4.11 + test + + + + org.springframework + spring-context + 5.3.18 + + + org.junit.jupiter + junit-jupiter + RELEASE + compile + + + org.testng + testng + RELEASE + compile + + + junit + junit + 4.12 + compile + + + + org.slf4j + slf4j-log4j12 + 1.7.21 + test + + + + + log4j + log4j + 1.2.17 + + + + + homework3 + + + + 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/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\2323/src/main/java/h3/Demo.java" "b/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\2323/src/main/java/h3/Demo.java" new file mode 100644 index 0000000000000000000000000000000000000000..5c4908d884369e6cc839811f2702ece081bfc40d --- /dev/null +++ "b/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\2323/src/main/java/h3/Demo.java" @@ -0,0 +1,92 @@ +package h3; + +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; + +/** + * DI依赖注入 + * @Value注解,外部配置属性的注入 + */ +@Component +public class Demo { + @Value("${name}") + private String name; + @Value("${age}") + private int age; + @Value("#{@list1}") + private List list; + @Value("#{@set1}") + private Set set; + @Value("#{@map1}") + private Map map; + @Value("#{@properties1}") + private Properties properties; + + /*设置引用类型:DI注入*/ + // @Autowired 实现自动装配的注解,可以完成自定义bean类型属性的注入 + + 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; + } + + public List getList() { + return list; + } + + public void setList(List list) { + this.list = list; + } + + public Set getSet() { + return set; + } + + public void setSet(Set set) { + this.set = set; + } + + public Map getMap() { + return map; + } + + public void setMap(Map map) { + this.map = map; + } + + public Properties getProperties() { + return properties; + } + + public void setProperties(Properties properties) { + this.properties = properties; + } + + @Override + public String toString() { + return "Demo{" + + "name='" + name + '\'' + + ", age=" + age + + ", list=" + list + + ", set=" + set + + ", map=" + map + + ", properties=" + properties + + '}'; + } +} diff --git "a/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\2323/src/main/java/h3/Test01.java" "b/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\2323/src/main/java/h3/Test01.java" new file mode 100644 index 0000000000000000000000000000000000000000..d08f6b57cb0d368be0fbbf7c39a46fda3cc35638 --- /dev/null +++ "b/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\2323/src/main/java/h3/Test01.java" @@ -0,0 +1,18 @@ +package h3; + +import org.springframework.context.ApplicationContext; +import org.springframework.context.support.ClassPathXmlApplicationContext; +import org.junit.Test; + +import java.io.IOException; + +public class Test01 { + @Test + public void test02()throws IOException { + ApplicationContext ac = new ClassPathXmlApplicationContext("beans.xml"); + Demo demo =(Demo)ac.getBean("demo"); + System.out.println(demo); + ((ClassPathXmlApplicationContext)ac).close(); + } + +} diff --git "a/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\2323/src/main/resources/beans.xml" "b/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\2323/src/main/resources/beans.xml" new file mode 100644 index 0000000000000000000000000000000000000000..24b94c24efa917faf9ab16cf2c0abd36850e2e1a --- /dev/null +++ "b/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\2323/src/main/resources/beans.xml" @@ -0,0 +1,38 @@ + + + + + + + + + + + + + 西游记 + 水浒传 + 三国演义 + + + 西游记 + 水浒传 + 三国演义 + + + + + + + + + 猪八戒 + 武松 + 曹操 + + + \ No newline at end of file diff --git "a/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\2323/src/main/resources/demo.properties" "b/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\2323/src/main/resources/demo.properties" new file mode 100644 index 0000000000000000000000000000000000000000..4b1fb0f58d563973605c58fbe4bb0fb7acbe4f09 --- /dev/null +++ "b/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\2323/src/main/resources/demo.properties" @@ -0,0 +1,2 @@ +name=\u5085\u4fca\u8c6a +age=20 diff --git "a/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\2323/src/main/webapp/WEB-INF/web.xml" "b/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\2323/src/main/webapp/WEB-INF/web.xml" new file mode 100644 index 0000000000000000000000000000000000000000..9f88c1f9632445500e3b3688fe477b860f77d8f2 --- /dev/null +++ "b/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\2323/src/main/webapp/WEB-INF/web.xml" @@ -0,0 +1,7 @@ + + + + Archetype Created Web Application + diff --git "a/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\2323/src/main/webapp/index.jsp" "b/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\2323/src/main/webapp/index.jsp" new file mode 100644 index 0000000000000000000000000000000000000000..c38169bb958579c635a5c09ee2f379cc5956c0c2 --- /dev/null +++ "b/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\2323/src/main/webapp/index.jsp" @@ -0,0 +1,5 @@ + + +

Hello World!

+ + diff --git "a/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\2323/target/classes/META-INF/homework3.kotlin_module" "b/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\2323/target/classes/META-INF/homework3.kotlin_module" new file mode 100644 index 0000000000000000000000000000000000000000..a49347afef10a9b5f95305e1058ba36adec7d6dd Binary files /dev/null and "b/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\2323/target/classes/META-INF/homework3.kotlin_module" differ diff --git "a/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\2323/target/classes/beans.xml" "b/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\2323/target/classes/beans.xml" new file mode 100644 index 0000000000000000000000000000000000000000..24b94c24efa917faf9ab16cf2c0abd36850e2e1a --- /dev/null +++ "b/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\2323/target/classes/beans.xml" @@ -0,0 +1,38 @@ + + + + + + + + + + + + + 西游记 + 水浒传 + 三国演义 + + + 西游记 + 水浒传 + 三国演义 + + + + + + + + + 猪八戒 + 武松 + 曹操 + + + \ No newline at end of file diff --git "a/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\2323/target/classes/demo.properties" "b/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\2323/target/classes/demo.properties" new file mode 100644 index 0000000000000000000000000000000000000000..4b1fb0f58d563973605c58fbe4bb0fb7acbe4f09 --- /dev/null +++ "b/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\2323/target/classes/demo.properties" @@ -0,0 +1,2 @@ +name=\u5085\u4fca\u8c6a +age=20 diff --git "a/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\2323/target/classes/h3/Demo.class" "b/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\2323/target/classes/h3/Demo.class" new file mode 100644 index 0000000000000000000000000000000000000000..ad3f9bf4e220098f362a028b5b67a9c0bfdc34a1 Binary files /dev/null and "b/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\2323/target/classes/h3/Demo.class" differ diff --git "a/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\2323/target/classes/h3/Test01.class" "b/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\2323/target/classes/h3/Test01.class" new file mode 100644 index 0000000000000000000000000000000000000000..1df4945188e879f97f3e17ac8f048f8f6d169a4e Binary files /dev/null and "b/20202501041-\345\274\240\351\233\252\346\235\276-\344\275\234\344\270\232\357\274\21025\347\217\255-\345\205\250\357\274\211/20202501041-\345\274\240\351\233\252\346\235\276-\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-20202501041-\345\274\240\351\233\252\346\235\276/\344\275\234\344\270\2323/target/classes/h3/Test01.class" differ