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