From 25cb5ff4f134f52641690699ca90e1f7d712a838 Mon Sep 17 00:00:00 2001 From: wuys Date: Fri, 10 Nov 2023 14:40:32 +0800 Subject: [PATCH] =?UTF-8?q?spring=20=E7=A9=BA=E6=A8=A1=E7=89=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .idea/.gitignore | 8 ++ .idea/compiler.xml | 16 +++ .idea/jarRepositories.xml | 20 +++ .idea/misc.xml | 10 ++ .idea/modules.xml | 8 ++ .idea/runConfigurations.xml | 10 ++ .idea/uiDesigner.xml | 124 ++++++++++++++++++ .idea/vcs.xml | 6 + spring_test_01/pom.xml | 52 ++++++++ spring_test_01/spring_test_01.iml | 32 +++++ .../src/main/java/com/msb/dao/EmpDao.java | 5 + spring_test_01/src/main/resources/spring.xml | 11 ++ 12 files changed, 302 insertions(+) create mode 100644 .idea/.gitignore create mode 100644 .idea/compiler.xml create mode 100644 .idea/jarRepositories.xml create mode 100644 .idea/misc.xml create mode 100644 .idea/modules.xml create mode 100644 .idea/runConfigurations.xml create mode 100644 .idea/uiDesigner.xml create mode 100644 .idea/vcs.xml create mode 100644 spring_test_01/pom.xml create mode 100644 spring_test_01/spring_test_01.iml create mode 100644 spring_test_01/src/main/java/com/msb/dao/EmpDao.java create mode 100644 spring_test_01/src/main/resources/spring.xml diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..73f69e0 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,8 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml +# Editor-based HTTP Client requests +/httpRequests/ diff --git a/.idea/compiler.xml b/.idea/compiler.xml new file mode 100644 index 0000000..59facca --- /dev/null +++ b/.idea/compiler.xml @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/jarRepositories.xml b/.idea/jarRepositories.xml new file mode 100644 index 0000000..980588c --- /dev/null +++ b/.idea/jarRepositories.xml @@ -0,0 +1,20 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..aeb1287 --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,10 @@ + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..4e689f6 --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/runConfigurations.xml b/.idea/runConfigurations.xml new file mode 100644 index 0000000..797acea --- /dev/null +++ b/.idea/runConfigurations.xml @@ -0,0 +1,10 @@ + + + + + + \ No newline at end of file diff --git a/.idea/uiDesigner.xml b/.idea/uiDesigner.xml new file mode 100644 index 0000000..e96534f --- /dev/null +++ b/.idea/uiDesigner.xml @@ -0,0 +1,124 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..94a25f7 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/spring_test_01/pom.xml b/spring_test_01/pom.xml new file mode 100644 index 0000000..528f200 --- /dev/null +++ b/spring_test_01/pom.xml @@ -0,0 +1,52 @@ + + + 4.0.0 + + com.msb + spring_test_01 + 1.0-SNAPSHOT + jar + + + + + + org.springframework + spring-beans + 6.0.11 + + + + + org.springframework + spring-core + 6.0.11 + + + + + org.springframework + spring-context + 6.0.11 + + + + + org.springframework + spring-expression + 6.0.11 + + + + + junit + junit + 4.13.2 + test + + + + + \ No newline at end of file diff --git a/spring_test_01/spring_test_01.iml b/spring_test_01/spring_test_01.iml new file mode 100644 index 0000000..a383fe1 --- /dev/null +++ b/spring_test_01/spring_test_01.iml @@ -0,0 +1,32 @@ + + + + + + + file://$MODULE_DIR$/src/main/resources/spring.xml + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/spring_test_01/src/main/java/com/msb/dao/EmpDao.java b/spring_test_01/src/main/java/com/msb/dao/EmpDao.java new file mode 100644 index 0000000..a447027 --- /dev/null +++ b/spring_test_01/src/main/java/com/msb/dao/EmpDao.java @@ -0,0 +1,5 @@ +package com.msb.dao; + +public interface EmpDao { + int addEmp(); +} diff --git a/spring_test_01/src/main/resources/spring.xml b/spring_test_01/src/main/resources/spring.xml new file mode 100644 index 0000000..6737b3a --- /dev/null +++ b/spring_test_01/src/main/resources/spring.xml @@ -0,0 +1,11 @@ + + + + + + + + \ No newline at end of file