From 782d60561c11ff35514a4b4eb07b10e3f1308247 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E6=9E=97=E5=B1=95?= <1742965070@qq.com>
Date: Tue, 28 May 2024 15:03:40 +0800
Subject: [PATCH 1/2] do
---
.../jd 5.15/vue-jd/.gitignore" | 0
.../jd 5.15/vue-jd/.vscode/extensions.json" | 0
.../jd 5.15/vue-jd/README.md" | 0
.../jd 5.15/vue-jd/index.html" | 0
.../jd 5.15/vue-jd/jsconfig.json" | 0
.../jd 5.15/vue-jd/package-lock.json" | 0
.../jd 5.15/vue-jd/package.json" | 0
.../jd 5.15/vue-jd/public/favicon.ico" | Bin
.../jd 5.15/vue-jd/src/App.vue" | 0
.../src/components/ShopInfo/Product.vue" | 0
.../src/components/ShopInfo/ShopInfo.vue" | 0
.../vue-jd/src/components/Tabbar/Tabbar.vue" | 0
.../src/components/carts/cartsButton.vue" | 0
.../jd 5.15/vue-jd/src/main.js" | 0
.../jd 5.15/vue-jd/src/router/index.js" | 0
.../jd 5.15/vue-jd/src/stores/carts.js" | 0
.../jd 5.15/vue-jd/src/stores/shop.js" | 0
.../jd 5.15/vue-jd/src/style/base.scss" | 0
.../jd 5.15/vue-jd/src/style/iconfont.css" | 0
.../jd 5.15/vue-jd/src/style/mixins.scss" | 0
.../jd 5.15/vue-jd/src/style/viriables.scss" | 0
.../vue-jd/src/views/Address/AddressView.vue" | 0
.../src/views/Address/CreateAddressView.vue" | 0
.../vue-jd/src/views/Cart/CartView.vue" | 0
.../vue-jd/src/views/Home/HomeView.vue" | 0
.../vue-jd/src/views/Home/NearByView.vue" | 0
.../vue-jd/src/views/Home/StaticPartt.vue" | 0
.../vue-jd/src/views/Layout/LayoutView.vue" | 0
.../vue-jd/src/views/Login/LoginView.vue" | 0
.../jd 5.15/vue-jd/src/views/My/MyView.vue" | 0
.../vue-jd/src/views/Order/OrderView.vue" | 0
.../vue-jd/src/views/Shop/ShopView.vue" | 0
.../jd 5.15/vue-jd/vite.config.js" | 0
...2\345\206\231\345\256\214\347\232\204.txt" | 0
.../untitled/.idea/.gitignore" | 8 ++
.../untitled/.idea/compiler.xml" | 13 ++
.../untitled/.idea/dataSources.xml" | 12 ++
.../untitled/.idea/encodings.xml" | 7 +
.../untitled/.idea/jarRepositories.xml" | 30 +++++
.../untitled/.idea/misc.xml" | 17 +++
.../untitled/.idea/uiDesigner.xml" | 124 ++++++++++++++++++
.../untitled/pom.xml" | 81 ++++++++++++
.../main/java/com/lz/config/JdbcConfig.java" | 31 +++++
.../java/com/lz/config/MyBatisConfig.java" | 25 ++++
.../java/com/lz/config/ServletConfig.java" | 21 +++
.../java/com/lz/config/SpringConfig.java" | 11 ++
.../java/com/lz/config/SpringMvcConfig.java" | 17 +++
.../com/lz/controller/UserController.java" | 19 +++
.../main/java/com/lz/mapper/UserMapper.java" | 13 ++
.../src/main/java/com/lz/pojo/User.java" | 49 +++++++
.../java/com/lz/service/UserService.java" | 11 ++
.../com/lz/service/impl/UserServiceImp.java" | 19 +++
.../resources/com/lz/mapper/UserMapper.xml" | 9 ++
.../main/resources/jdbc.config.properties" | 4 +
.../untitled/src/main/webapp/WEB-INF/web.xml" | 7 +
.../untitled/src/main/webapp/index.html" | 10 ++
.../untitled/src/main/webapp/index.jsp" | 5 +
.../src/test/java/com/lz/UserTest.java" | 4 +
.../classes/com/lz/mapper/UserMapper.xml" | 9 ++
.../target/classes/jdbc.config.properties" | 4 +
.../target/untitled/META-INF/MANIFEST.MF" | 5 +
.../classes/com/lz/mapper/UserMapper.xml" | 9 ++
.../WEB-INF/classes/jdbc.config.properties" | 4 +
.../untitled/target/untitled/WEB-INF/web.xml" | 7 +
.../untitled/target/untitled/index.html" | 10 ++
.../untitled/target/untitled/index.jsp" | 5 +
.../untitled/untitled.iml" | 15 +++
67 files changed, 615 insertions(+)
rename "\346\236\227\345\261\225/vue-jd/.gitignore" => "\346\236\227\345\261\225/jd 5.15/vue-jd/.gitignore" (100%)
rename "\346\236\227\345\261\225/vue-jd/.vscode/extensions.json" => "\346\236\227\345\261\225/jd 5.15/vue-jd/.vscode/extensions.json" (100%)
rename "\346\236\227\345\261\225/vue-jd/README.md" => "\346\236\227\345\261\225/jd 5.15/vue-jd/README.md" (100%)
rename "\346\236\227\345\261\225/vue-jd/index.html" => "\346\236\227\345\261\225/jd 5.15/vue-jd/index.html" (100%)
rename "\346\236\227\345\261\225/vue-jd/jsconfig.json" => "\346\236\227\345\261\225/jd 5.15/vue-jd/jsconfig.json" (100%)
rename "\346\236\227\345\261\225/vue-jd/package-lock.json" => "\346\236\227\345\261\225/jd 5.15/vue-jd/package-lock.json" (100%)
rename "\346\236\227\345\261\225/vue-jd/package.json" => "\346\236\227\345\261\225/jd 5.15/vue-jd/package.json" (100%)
rename "\346\236\227\345\261\225/vue-jd/public/favicon.ico" => "\346\236\227\345\261\225/jd 5.15/vue-jd/public/favicon.ico" (100%)
rename "\346\236\227\345\261\225/vue-jd/src/App.vue" => "\346\236\227\345\261\225/jd 5.15/vue-jd/src/App.vue" (100%)
rename "\346\236\227\345\261\225/vue-jd/src/components/ShopInfo/Product.vue" => "\346\236\227\345\261\225/jd 5.15/vue-jd/src/components/ShopInfo/Product.vue" (100%)
rename "\346\236\227\345\261\225/vue-jd/src/components/ShopInfo/ShopInfo.vue" => "\346\236\227\345\261\225/jd 5.15/vue-jd/src/components/ShopInfo/ShopInfo.vue" (100%)
rename "\346\236\227\345\261\225/vue-jd/src/components/Tabbar/Tabbar.vue" => "\346\236\227\345\261\225/jd 5.15/vue-jd/src/components/Tabbar/Tabbar.vue" (100%)
rename "\346\236\227\345\261\225/vue-jd/src/components/carts/cartsButton.vue" => "\346\236\227\345\261\225/jd 5.15/vue-jd/src/components/carts/cartsButton.vue" (100%)
rename "\346\236\227\345\261\225/vue-jd/src/main.js" => "\346\236\227\345\261\225/jd 5.15/vue-jd/src/main.js" (100%)
rename "\346\236\227\345\261\225/vue-jd/src/router/index.js" => "\346\236\227\345\261\225/jd 5.15/vue-jd/src/router/index.js" (100%)
rename "\346\236\227\345\261\225/vue-jd/src/stores/carts.js" => "\346\236\227\345\261\225/jd 5.15/vue-jd/src/stores/carts.js" (100%)
rename "\346\236\227\345\261\225/vue-jd/src/stores/shop.js" => "\346\236\227\345\261\225/jd 5.15/vue-jd/src/stores/shop.js" (100%)
rename "\346\236\227\345\261\225/vue-jd/src/style/base.scss" => "\346\236\227\345\261\225/jd 5.15/vue-jd/src/style/base.scss" (100%)
rename "\346\236\227\345\261\225/vue-jd/src/style/iconfont.css" => "\346\236\227\345\261\225/jd 5.15/vue-jd/src/style/iconfont.css" (100%)
rename "\346\236\227\345\261\225/vue-jd/src/style/mixins.scss" => "\346\236\227\345\261\225/jd 5.15/vue-jd/src/style/mixins.scss" (100%)
rename "\346\236\227\345\261\225/vue-jd/src/style/viriables.scss" => "\346\236\227\345\261\225/jd 5.15/vue-jd/src/style/viriables.scss" (100%)
rename "\346\236\227\345\261\225/vue-jd/src/views/Address/AddressView.vue" => "\346\236\227\345\261\225/jd 5.15/vue-jd/src/views/Address/AddressView.vue" (100%)
rename "\346\236\227\345\261\225/vue-jd/src/views/Address/CreateAddressView.vue" => "\346\236\227\345\261\225/jd 5.15/vue-jd/src/views/Address/CreateAddressView.vue" (100%)
rename "\346\236\227\345\261\225/vue-jd/src/views/Cart/CartView.vue" => "\346\236\227\345\261\225/jd 5.15/vue-jd/src/views/Cart/CartView.vue" (100%)
rename "\346\236\227\345\261\225/vue-jd/src/views/Home/HomeView.vue" => "\346\236\227\345\261\225/jd 5.15/vue-jd/src/views/Home/HomeView.vue" (100%)
rename "\346\236\227\345\261\225/vue-jd/src/views/Home/NearByView.vue" => "\346\236\227\345\261\225/jd 5.15/vue-jd/src/views/Home/NearByView.vue" (100%)
rename "\346\236\227\345\261\225/vue-jd/src/views/Home/StaticPartt.vue" => "\346\236\227\345\261\225/jd 5.15/vue-jd/src/views/Home/StaticPartt.vue" (100%)
rename "\346\236\227\345\261\225/vue-jd/src/views/Layout/LayoutView.vue" => "\346\236\227\345\261\225/jd 5.15/vue-jd/src/views/Layout/LayoutView.vue" (100%)
rename "\346\236\227\345\261\225/vue-jd/src/views/Login/LoginView.vue" => "\346\236\227\345\261\225/jd 5.15/vue-jd/src/views/Login/LoginView.vue" (100%)
rename "\346\236\227\345\261\225/vue-jd/src/views/My/MyView.vue" => "\346\236\227\345\261\225/jd 5.15/vue-jd/src/views/My/MyView.vue" (100%)
rename "\346\236\227\345\261\225/vue-jd/src/views/Order/OrderView.vue" => "\346\236\227\345\261\225/jd 5.15/vue-jd/src/views/Order/OrderView.vue" (100%)
rename "\346\236\227\345\261\225/vue-jd/src/views/Shop/ShopView.vue" => "\346\236\227\345\261\225/jd 5.15/vue-jd/src/views/Shop/ShopView.vue" (100%)
rename "\346\236\227\345\261\225/vue-jd/vite.config.js" => "\346\236\227\345\261\225/jd 5.15/vue-jd/vite.config.js" (100%)
rename "\346\236\227\345\261\225/\344\274\232\345\206\231\345\256\214\347\232\204.txt" => "\346\236\227\345\261\225/jd 5.15/\344\274\232\345\206\231\345\256\214\347\232\204.txt" (100%)
create mode 100644 "\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/.idea/.gitignore"
create mode 100644 "\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/.idea/compiler.xml"
create mode 100644 "\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/.idea/dataSources.xml"
create mode 100644 "\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/.idea/encodings.xml"
create mode 100644 "\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/.idea/jarRepositories.xml"
create mode 100644 "\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/.idea/misc.xml"
create mode 100644 "\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/.idea/uiDesigner.xml"
create mode 100644 "\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/pom.xml"
create mode 100644 "\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/src/main/java/com/lz/config/JdbcConfig.java"
create mode 100644 "\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/src/main/java/com/lz/config/MyBatisConfig.java"
create mode 100644 "\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/src/main/java/com/lz/config/ServletConfig.java"
create mode 100644 "\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/src/main/java/com/lz/config/SpringConfig.java"
create mode 100644 "\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/src/main/java/com/lz/config/SpringMvcConfig.java"
create mode 100644 "\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/src/main/java/com/lz/controller/UserController.java"
create mode 100644 "\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/src/main/java/com/lz/mapper/UserMapper.java"
create mode 100644 "\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/src/main/java/com/lz/pojo/User.java"
create mode 100644 "\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/src/main/java/com/lz/service/UserService.java"
create mode 100644 "\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/src/main/java/com/lz/service/impl/UserServiceImp.java"
create mode 100644 "\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/src/main/resources/com/lz/mapper/UserMapper.xml"
create mode 100644 "\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/src/main/resources/jdbc.config.properties"
create mode 100644 "\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/src/main/webapp/WEB-INF/web.xml"
create mode 100644 "\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/src/main/webapp/index.html"
create mode 100644 "\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/src/main/webapp/index.jsp"
create mode 100644 "\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/src/test/java/com/lz/UserTest.java"
create mode 100644 "\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/target/classes/com/lz/mapper/UserMapper.xml"
create mode 100644 "\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/target/classes/jdbc.config.properties"
create mode 100644 "\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/target/untitled/META-INF/MANIFEST.MF"
create mode 100644 "\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/target/untitled/WEB-INF/classes/com/lz/mapper/UserMapper.xml"
create mode 100644 "\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/target/untitled/WEB-INF/classes/jdbc.config.properties"
create mode 100644 "\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/target/untitled/WEB-INF/web.xml"
create mode 100644 "\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/target/untitled/index.html"
create mode 100644 "\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/target/untitled/index.jsp"
create mode 100644 "\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/untitled.iml"
diff --git "a/\346\236\227\345\261\225/vue-jd/.gitignore" "b/\346\236\227\345\261\225/jd 5.15/vue-jd/.gitignore"
similarity index 100%
rename from "\346\236\227\345\261\225/vue-jd/.gitignore"
rename to "\346\236\227\345\261\225/jd 5.15/vue-jd/.gitignore"
diff --git "a/\346\236\227\345\261\225/vue-jd/.vscode/extensions.json" "b/\346\236\227\345\261\225/jd 5.15/vue-jd/.vscode/extensions.json"
similarity index 100%
rename from "\346\236\227\345\261\225/vue-jd/.vscode/extensions.json"
rename to "\346\236\227\345\261\225/jd 5.15/vue-jd/.vscode/extensions.json"
diff --git "a/\346\236\227\345\261\225/vue-jd/README.md" "b/\346\236\227\345\261\225/jd 5.15/vue-jd/README.md"
similarity index 100%
rename from "\346\236\227\345\261\225/vue-jd/README.md"
rename to "\346\236\227\345\261\225/jd 5.15/vue-jd/README.md"
diff --git "a/\346\236\227\345\261\225/vue-jd/index.html" "b/\346\236\227\345\261\225/jd 5.15/vue-jd/index.html"
similarity index 100%
rename from "\346\236\227\345\261\225/vue-jd/index.html"
rename to "\346\236\227\345\261\225/jd 5.15/vue-jd/index.html"
diff --git "a/\346\236\227\345\261\225/vue-jd/jsconfig.json" "b/\346\236\227\345\261\225/jd 5.15/vue-jd/jsconfig.json"
similarity index 100%
rename from "\346\236\227\345\261\225/vue-jd/jsconfig.json"
rename to "\346\236\227\345\261\225/jd 5.15/vue-jd/jsconfig.json"
diff --git "a/\346\236\227\345\261\225/vue-jd/package-lock.json" "b/\346\236\227\345\261\225/jd 5.15/vue-jd/package-lock.json"
similarity index 100%
rename from "\346\236\227\345\261\225/vue-jd/package-lock.json"
rename to "\346\236\227\345\261\225/jd 5.15/vue-jd/package-lock.json"
diff --git "a/\346\236\227\345\261\225/vue-jd/package.json" "b/\346\236\227\345\261\225/jd 5.15/vue-jd/package.json"
similarity index 100%
rename from "\346\236\227\345\261\225/vue-jd/package.json"
rename to "\346\236\227\345\261\225/jd 5.15/vue-jd/package.json"
diff --git "a/\346\236\227\345\261\225/vue-jd/public/favicon.ico" "b/\346\236\227\345\261\225/jd 5.15/vue-jd/public/favicon.ico"
similarity index 100%
rename from "\346\236\227\345\261\225/vue-jd/public/favicon.ico"
rename to "\346\236\227\345\261\225/jd 5.15/vue-jd/public/favicon.ico"
diff --git "a/\346\236\227\345\261\225/vue-jd/src/App.vue" "b/\346\236\227\345\261\225/jd 5.15/vue-jd/src/App.vue"
similarity index 100%
rename from "\346\236\227\345\261\225/vue-jd/src/App.vue"
rename to "\346\236\227\345\261\225/jd 5.15/vue-jd/src/App.vue"
diff --git "a/\346\236\227\345\261\225/vue-jd/src/components/ShopInfo/Product.vue" "b/\346\236\227\345\261\225/jd 5.15/vue-jd/src/components/ShopInfo/Product.vue"
similarity index 100%
rename from "\346\236\227\345\261\225/vue-jd/src/components/ShopInfo/Product.vue"
rename to "\346\236\227\345\261\225/jd 5.15/vue-jd/src/components/ShopInfo/Product.vue"
diff --git "a/\346\236\227\345\261\225/vue-jd/src/components/ShopInfo/ShopInfo.vue" "b/\346\236\227\345\261\225/jd 5.15/vue-jd/src/components/ShopInfo/ShopInfo.vue"
similarity index 100%
rename from "\346\236\227\345\261\225/vue-jd/src/components/ShopInfo/ShopInfo.vue"
rename to "\346\236\227\345\261\225/jd 5.15/vue-jd/src/components/ShopInfo/ShopInfo.vue"
diff --git "a/\346\236\227\345\261\225/vue-jd/src/components/Tabbar/Tabbar.vue" "b/\346\236\227\345\261\225/jd 5.15/vue-jd/src/components/Tabbar/Tabbar.vue"
similarity index 100%
rename from "\346\236\227\345\261\225/vue-jd/src/components/Tabbar/Tabbar.vue"
rename to "\346\236\227\345\261\225/jd 5.15/vue-jd/src/components/Tabbar/Tabbar.vue"
diff --git "a/\346\236\227\345\261\225/vue-jd/src/components/carts/cartsButton.vue" "b/\346\236\227\345\261\225/jd 5.15/vue-jd/src/components/carts/cartsButton.vue"
similarity index 100%
rename from "\346\236\227\345\261\225/vue-jd/src/components/carts/cartsButton.vue"
rename to "\346\236\227\345\261\225/jd 5.15/vue-jd/src/components/carts/cartsButton.vue"
diff --git "a/\346\236\227\345\261\225/vue-jd/src/main.js" "b/\346\236\227\345\261\225/jd 5.15/vue-jd/src/main.js"
similarity index 100%
rename from "\346\236\227\345\261\225/vue-jd/src/main.js"
rename to "\346\236\227\345\261\225/jd 5.15/vue-jd/src/main.js"
diff --git "a/\346\236\227\345\261\225/vue-jd/src/router/index.js" "b/\346\236\227\345\261\225/jd 5.15/vue-jd/src/router/index.js"
similarity index 100%
rename from "\346\236\227\345\261\225/vue-jd/src/router/index.js"
rename to "\346\236\227\345\261\225/jd 5.15/vue-jd/src/router/index.js"
diff --git "a/\346\236\227\345\261\225/vue-jd/src/stores/carts.js" "b/\346\236\227\345\261\225/jd 5.15/vue-jd/src/stores/carts.js"
similarity index 100%
rename from "\346\236\227\345\261\225/vue-jd/src/stores/carts.js"
rename to "\346\236\227\345\261\225/jd 5.15/vue-jd/src/stores/carts.js"
diff --git "a/\346\236\227\345\261\225/vue-jd/src/stores/shop.js" "b/\346\236\227\345\261\225/jd 5.15/vue-jd/src/stores/shop.js"
similarity index 100%
rename from "\346\236\227\345\261\225/vue-jd/src/stores/shop.js"
rename to "\346\236\227\345\261\225/jd 5.15/vue-jd/src/stores/shop.js"
diff --git "a/\346\236\227\345\261\225/vue-jd/src/style/base.scss" "b/\346\236\227\345\261\225/jd 5.15/vue-jd/src/style/base.scss"
similarity index 100%
rename from "\346\236\227\345\261\225/vue-jd/src/style/base.scss"
rename to "\346\236\227\345\261\225/jd 5.15/vue-jd/src/style/base.scss"
diff --git "a/\346\236\227\345\261\225/vue-jd/src/style/iconfont.css" "b/\346\236\227\345\261\225/jd 5.15/vue-jd/src/style/iconfont.css"
similarity index 100%
rename from "\346\236\227\345\261\225/vue-jd/src/style/iconfont.css"
rename to "\346\236\227\345\261\225/jd 5.15/vue-jd/src/style/iconfont.css"
diff --git "a/\346\236\227\345\261\225/vue-jd/src/style/mixins.scss" "b/\346\236\227\345\261\225/jd 5.15/vue-jd/src/style/mixins.scss"
similarity index 100%
rename from "\346\236\227\345\261\225/vue-jd/src/style/mixins.scss"
rename to "\346\236\227\345\261\225/jd 5.15/vue-jd/src/style/mixins.scss"
diff --git "a/\346\236\227\345\261\225/vue-jd/src/style/viriables.scss" "b/\346\236\227\345\261\225/jd 5.15/vue-jd/src/style/viriables.scss"
similarity index 100%
rename from "\346\236\227\345\261\225/vue-jd/src/style/viriables.scss"
rename to "\346\236\227\345\261\225/jd 5.15/vue-jd/src/style/viriables.scss"
diff --git "a/\346\236\227\345\261\225/vue-jd/src/views/Address/AddressView.vue" "b/\346\236\227\345\261\225/jd 5.15/vue-jd/src/views/Address/AddressView.vue"
similarity index 100%
rename from "\346\236\227\345\261\225/vue-jd/src/views/Address/AddressView.vue"
rename to "\346\236\227\345\261\225/jd 5.15/vue-jd/src/views/Address/AddressView.vue"
diff --git "a/\346\236\227\345\261\225/vue-jd/src/views/Address/CreateAddressView.vue" "b/\346\236\227\345\261\225/jd 5.15/vue-jd/src/views/Address/CreateAddressView.vue"
similarity index 100%
rename from "\346\236\227\345\261\225/vue-jd/src/views/Address/CreateAddressView.vue"
rename to "\346\236\227\345\261\225/jd 5.15/vue-jd/src/views/Address/CreateAddressView.vue"
diff --git "a/\346\236\227\345\261\225/vue-jd/src/views/Cart/CartView.vue" "b/\346\236\227\345\261\225/jd 5.15/vue-jd/src/views/Cart/CartView.vue"
similarity index 100%
rename from "\346\236\227\345\261\225/vue-jd/src/views/Cart/CartView.vue"
rename to "\346\236\227\345\261\225/jd 5.15/vue-jd/src/views/Cart/CartView.vue"
diff --git "a/\346\236\227\345\261\225/vue-jd/src/views/Home/HomeView.vue" "b/\346\236\227\345\261\225/jd 5.15/vue-jd/src/views/Home/HomeView.vue"
similarity index 100%
rename from "\346\236\227\345\261\225/vue-jd/src/views/Home/HomeView.vue"
rename to "\346\236\227\345\261\225/jd 5.15/vue-jd/src/views/Home/HomeView.vue"
diff --git "a/\346\236\227\345\261\225/vue-jd/src/views/Home/NearByView.vue" "b/\346\236\227\345\261\225/jd 5.15/vue-jd/src/views/Home/NearByView.vue"
similarity index 100%
rename from "\346\236\227\345\261\225/vue-jd/src/views/Home/NearByView.vue"
rename to "\346\236\227\345\261\225/jd 5.15/vue-jd/src/views/Home/NearByView.vue"
diff --git "a/\346\236\227\345\261\225/vue-jd/src/views/Home/StaticPartt.vue" "b/\346\236\227\345\261\225/jd 5.15/vue-jd/src/views/Home/StaticPartt.vue"
similarity index 100%
rename from "\346\236\227\345\261\225/vue-jd/src/views/Home/StaticPartt.vue"
rename to "\346\236\227\345\261\225/jd 5.15/vue-jd/src/views/Home/StaticPartt.vue"
diff --git "a/\346\236\227\345\261\225/vue-jd/src/views/Layout/LayoutView.vue" "b/\346\236\227\345\261\225/jd 5.15/vue-jd/src/views/Layout/LayoutView.vue"
similarity index 100%
rename from "\346\236\227\345\261\225/vue-jd/src/views/Layout/LayoutView.vue"
rename to "\346\236\227\345\261\225/jd 5.15/vue-jd/src/views/Layout/LayoutView.vue"
diff --git "a/\346\236\227\345\261\225/vue-jd/src/views/Login/LoginView.vue" "b/\346\236\227\345\261\225/jd 5.15/vue-jd/src/views/Login/LoginView.vue"
similarity index 100%
rename from "\346\236\227\345\261\225/vue-jd/src/views/Login/LoginView.vue"
rename to "\346\236\227\345\261\225/jd 5.15/vue-jd/src/views/Login/LoginView.vue"
diff --git "a/\346\236\227\345\261\225/vue-jd/src/views/My/MyView.vue" "b/\346\236\227\345\261\225/jd 5.15/vue-jd/src/views/My/MyView.vue"
similarity index 100%
rename from "\346\236\227\345\261\225/vue-jd/src/views/My/MyView.vue"
rename to "\346\236\227\345\261\225/jd 5.15/vue-jd/src/views/My/MyView.vue"
diff --git "a/\346\236\227\345\261\225/vue-jd/src/views/Order/OrderView.vue" "b/\346\236\227\345\261\225/jd 5.15/vue-jd/src/views/Order/OrderView.vue"
similarity index 100%
rename from "\346\236\227\345\261\225/vue-jd/src/views/Order/OrderView.vue"
rename to "\346\236\227\345\261\225/jd 5.15/vue-jd/src/views/Order/OrderView.vue"
diff --git "a/\346\236\227\345\261\225/vue-jd/src/views/Shop/ShopView.vue" "b/\346\236\227\345\261\225/jd 5.15/vue-jd/src/views/Shop/ShopView.vue"
similarity index 100%
rename from "\346\236\227\345\261\225/vue-jd/src/views/Shop/ShopView.vue"
rename to "\346\236\227\345\261\225/jd 5.15/vue-jd/src/views/Shop/ShopView.vue"
diff --git "a/\346\236\227\345\261\225/vue-jd/vite.config.js" "b/\346\236\227\345\261\225/jd 5.15/vue-jd/vite.config.js"
similarity index 100%
rename from "\346\236\227\345\261\225/vue-jd/vite.config.js"
rename to "\346\236\227\345\261\225/jd 5.15/vue-jd/vite.config.js"
diff --git "a/\346\236\227\345\261\225/\344\274\232\345\206\231\345\256\214\347\232\204.txt" "b/\346\236\227\345\261\225/jd 5.15/\344\274\232\345\206\231\345\256\214\347\232\204.txt"
similarity index 100%
rename from "\346\236\227\345\261\225/\344\274\232\345\206\231\345\256\214\347\232\204.txt"
rename to "\346\236\227\345\261\225/jd 5.15/\344\274\232\345\206\231\345\256\214\347\232\204.txt"
diff --git "a/\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/.idea/.gitignore" "b/\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/.idea/.gitignore"
new file mode 100644
index 0000000..35410ca
--- /dev/null
+++ "b/\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/.idea/.gitignore"
@@ -0,0 +1,8 @@
+# 默认忽略的文件
+/shelf/
+/workspace.xml
+# 基于编辑器的 HTTP 客户端请求
+/httpRequests/
+# Datasource local storage ignored files
+/dataSources/
+/dataSources.local.xml
diff --git "a/\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/.idea/compiler.xml" "b/\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/.idea/compiler.xml"
new file mode 100644
index 0000000..d9e3477
--- /dev/null
+++ "b/\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/.idea/compiler.xml"
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/.idea/dataSources.xml" "b/\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/.idea/dataSources.xml"
new file mode 100644
index 0000000..acf0500
--- /dev/null
+++ "b/\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/.idea/dataSources.xml"
@@ -0,0 +1,12 @@
+
+
+
+
+ mysql.8
+ true
+ com.mysql.cj.jdbc.Driver
+ jdbc:mysql://localhost:3306
+ $ProjectFileDir$
+
+
+
\ No newline at end of file
diff --git "a/\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/.idea/encodings.xml" "b/\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/.idea/encodings.xml"
new file mode 100644
index 0000000..aa00ffa
--- /dev/null
+++ "b/\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/.idea/encodings.xml"
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/.idea/jarRepositories.xml" "b/\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/.idea/jarRepositories.xml"
new file mode 100644
index 0000000..7628153
--- /dev/null
+++ "b/\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/.idea/jarRepositories.xml"
@@ -0,0 +1,30 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/.idea/misc.xml" "b/\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/.idea/misc.xml"
new file mode 100644
index 0000000..49d0804
--- /dev/null
+++ "b/\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/.idea/misc.xml"
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/.idea/uiDesigner.xml" "b/\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/.idea/uiDesigner.xml"
new file mode 100644
index 0000000..2b63946
--- /dev/null
+++ "b/\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/.idea/uiDesigner.xml"
@@ -0,0 +1,124 @@
+
+
+
+
+ -
+
+
+ -
+
+
+ -
+
+
+ -
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+ -
+
+
+ -
+
+
+ -
+
+
+ -
+
+
+
+
+ -
+
+
+ -
+
+
+
+
+
\ No newline at end of file
diff --git "a/\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/pom.xml" "b/\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/pom.xml"
new file mode 100644
index 0000000..a8ca2b2
--- /dev/null
+++ "b/\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/pom.xml"
@@ -0,0 +1,81 @@
+
+ 4.0.0
+ com.lz
+ untitled
+ war
+ 1.0-SNAPSHOT
+ untitled Maven Webapp
+ http://maven.apache.org
+
+
+
+ org.springframework
+ spring-webmvc
+ 5.2.10.RELEASE
+
+
+
+
+ com.alibaba
+ druid
+ 1.1.16
+
+
+ mysql
+ mysql-connector-java
+ 8.0.28
+
+
+ org.springframework
+ spring-jdbc
+ 5.2.10.RELEASE
+
+
+
+
+ org.mybatis
+ mybatis
+ 3.5.6
+
+
+ org.mybatis
+ mybatis-spring
+ 1.3.0
+
+
+
+
+ junit
+ junit
+ 4.12
+ test
+
+
+ org.springframework
+ spring-test
+ 5.2.10.RELEASE
+
+
+
+ javax.servlet
+ javax.servlet-api
+ 3.1.0
+
+
+
+ com.fasterxml.jackson.core
+ jackson-databind
+ 2.9.0
+
+
+ org.springframework
+ spring-beans
+ 5.2.10.RELEASE
+
+
+
+
+ untitled
+
+
diff --git "a/\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/src/main/java/com/lz/config/JdbcConfig.java" "b/\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/src/main/java/com/lz/config/JdbcConfig.java"
new file mode 100644
index 0000000..29063cd
--- /dev/null
+++ "b/\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/src/main/java/com/lz/config/JdbcConfig.java"
@@ -0,0 +1,31 @@
+package com.lz.config;
+
+import com.alibaba.druid.pool.DruidDataSource;
+import org.springframework.beans.factory.annotation.Value;
+import org.springframework.context.annotation.Bean;
+
+import javax.sql.DataSource;
+
+public class JdbcConfig {
+ @Value("${jdbc.driver}")
+ private String driver;
+
+ @Value("${jdbc.url}")
+ private String url;
+
+ @Value("${jdbc.user}")
+ private String useruser;
+
+ @Value("${jdbc.pwd}")
+ private String password;
+
+ @Bean
+ public DataSource dataSource(){
+ DruidDataSource ds=new DruidDataSource();
+ ds.setDriverClassName(driver);
+ ds.setUrl(url);
+ ds.setUsername(useruser);
+ ds.setPassword(password);
+ return ds;
+ }
+}
diff --git "a/\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/src/main/java/com/lz/config/MyBatisConfig.java" "b/\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/src/main/java/com/lz/config/MyBatisConfig.java"
new file mode 100644
index 0000000..46490b0
--- /dev/null
+++ "b/\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/src/main/java/com/lz/config/MyBatisConfig.java"
@@ -0,0 +1,25 @@
+package com.lz.config;
+
+import org.mybatis.spring.SqlSessionFactoryBean;
+import org.mybatis.spring.mapper.MapperScannerConfigurer;
+import org.springframework.context.annotation.Bean;
+
+import javax.sql.DataSource;
+
+
+public class MyBatisConfig {
+ @Bean
+ public SqlSessionFactoryBean sqlSessionFactoryBean(DataSource dataSource) {
+ SqlSessionFactoryBean sqlSessionFactoryBean = new SqlSessionFactoryBean();
+ sqlSessionFactoryBean.setDataSource(dataSource);
+ sqlSessionFactoryBean.setTypeAliasesPackage("com.lz.pojo");
+ return sqlSessionFactoryBean;
+ }
+
+ @Bean
+ public MapperScannerConfigurer mapperScannerConfigurer(){
+ MapperScannerConfigurer mapperScannerConfigurer=new MapperScannerConfigurer();
+ mapperScannerConfigurer.setBasePackage("com.lz.mapper");
+ return mapperScannerConfigurer;
+ }
+}
diff --git "a/\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/src/main/java/com/lz/config/ServletConfig.java" "b/\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/src/main/java/com/lz/config/ServletConfig.java"
new file mode 100644
index 0000000..0615b9b
--- /dev/null
+++ "b/\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/src/main/java/com/lz/config/ServletConfig.java"
@@ -0,0 +1,21 @@
+package com.lz.config;
+
+import org.springframework.web.servlet.support.AbstractAnnotationConfigDispatcherServletInitializer;
+
+public class ServletConfig extends AbstractAnnotationConfigDispatcherServletInitializer {
+
+ @Override
+ protected Class>[] getRootConfigClasses() {
+ return new Class[]{SpringConfig.class};
+ }
+
+ @Override
+ protected Class>[] getServletConfigClasses() {
+ return new Class[]{SpringMvcConfig.class};
+ }
+
+ @Override
+ protected String[] getServletMappings() {
+ return new String[]{"/"};
+ }
+}
diff --git "a/\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/src/main/java/com/lz/config/SpringConfig.java" "b/\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/src/main/java/com/lz/config/SpringConfig.java"
new file mode 100644
index 0000000..3c8d4bb
--- /dev/null
+++ "b/\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/src/main/java/com/lz/config/SpringConfig.java"
@@ -0,0 +1,11 @@
+package com.lz.config;
+
+import org.springframework.context.annotation.ComponentScan;
+import org.springframework.context.annotation.Configuration;
+import org.springframework.context.annotation.PropertySource;
+
+@Configuration
+@ComponentScan({"com.lz.service","com.lz.mapper"})
+@PropertySource({"classpath:jdbc.config.properties"})
+public class SpringConfig {
+}
diff --git "a/\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/src/main/java/com/lz/config/SpringMvcConfig.java" "b/\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/src/main/java/com/lz/config/SpringMvcConfig.java"
new file mode 100644
index 0000000..9706d2c
--- /dev/null
+++ "b/\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/src/main/java/com/lz/config/SpringMvcConfig.java"
@@ -0,0 +1,17 @@
+package com.lz.config;
+
+import org.springframework.context.annotation.ComponentScan;
+import org.springframework.context.annotation.Configuration;
+import org.springframework.web.servlet.config.annotation.EnableWebMvc;
+import org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry;
+import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
+
+@Configuration
+@ComponentScan("com.lz.controller")
+@EnableWebMvc
+public class SpringMvcConfig implements WebMvcConfigurer {
+
+ public void addResourceHandlers(ResourceHandlerRegistry registry) {
+ registry.addResourceHandler("/index.html").addResourceLocations("/index.html");
+ }
+}
diff --git "a/\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/src/main/java/com/lz/controller/UserController.java" "b/\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/src/main/java/com/lz/controller/UserController.java"
new file mode 100644
index 0000000..db0c215
--- /dev/null
+++ "b/\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/src/main/java/com/lz/controller/UserController.java"
@@ -0,0 +1,19 @@
+package com.lz.controller;
+
+import com.lz.service.UserService;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.web.bind.annotation.GetMapping;
+import org.springframework.web.bind.annotation.RequestMapping;
+import org.springframework.web.bind.annotation.RestController;
+
+@RestController
+@RequestMapping("/u")
+public class UserController {
+ @Autowired
+ public UserService userService;
+
+ @GetMapping
+ public String get(){
+ return "get ok";
+ };
+}
diff --git "a/\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/src/main/java/com/lz/mapper/UserMapper.java" "b/\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/src/main/java/com/lz/mapper/UserMapper.java"
new file mode 100644
index 0000000..57b102c
--- /dev/null
+++ "b/\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/src/main/java/com/lz/mapper/UserMapper.java"
@@ -0,0 +1,13 @@
+package com.lz.mapper;
+
+import com.lz.pojo.User;
+import org.springframework.stereotype.Repository;
+
+import java.util.List;
+
+@Repository
+public interface UserMapper {
+ List getUserList(){
+ return null;
+ };
+}
diff --git "a/\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/src/main/java/com/lz/pojo/User.java" "b/\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/src/main/java/com/lz/pojo/User.java"
new file mode 100644
index 0000000..2c2fad1
--- /dev/null
+++ "b/\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/src/main/java/com/lz/pojo/User.java"
@@ -0,0 +1,49 @@
+package com.lz.pojo;
+
+public class User {
+ private int id;
+ private String name;
+ private int age;
+
+ @Override
+ public String toString() {
+ return "User{" +
+ "id=" + id +
+ ", name='" + name + '\'' +
+ ", age=" + age +
+ '}';
+ }
+
+ public int getId() {
+ return id;
+ }
+
+ public void setId(int id) {
+ this.id = id;
+ }
+
+ 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 User() {
+ }
+
+ public User(int id, String name, int age) {
+ this.id = id;
+ this.name = name;
+ this.age = age;
+ }
+}
diff --git "a/\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/src/main/java/com/lz/service/UserService.java" "b/\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/src/main/java/com/lz/service/UserService.java"
new file mode 100644
index 0000000..b636183
--- /dev/null
+++ "b/\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/src/main/java/com/lz/service/UserService.java"
@@ -0,0 +1,11 @@
+package com.lz.service;
+
+import com.lz.pojo.User;
+
+import java.util.List;
+
+
+
+public interface UserService {
+ List getUserList();
+}
diff --git "a/\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/src/main/java/com/lz/service/impl/UserServiceImp.java" "b/\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/src/main/java/com/lz/service/impl/UserServiceImp.java"
new file mode 100644
index 0000000..5e55fb8
--- /dev/null
+++ "b/\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/src/main/java/com/lz/service/impl/UserServiceImp.java"
@@ -0,0 +1,19 @@
+package com.lz.service.impl;
+
+import com.lz.mapper.UserMapper;
+import com.lz.pojo.User;
+import com.lz.service.UserService;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.stereotype.Service;
+
+import java.util.List;
+@Service
+public class UserServiceImp implements UserService {
+ @Autowired
+ public UserMapper userMapper;
+
+ @Override
+ public List getUserList() {
+ return userMapper.getUserList();
+ }
+}
diff --git "a/\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/src/main/resources/com/lz/mapper/UserMapper.xml" "b/\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/src/main/resources/com/lz/mapper/UserMapper.xml"
new file mode 100644
index 0000000..6fb3c9c
--- /dev/null
+++ "b/\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/src/main/resources/com/lz/mapper/UserMapper.xml"
@@ -0,0 +1,9 @@
+
+
+
+
+
\ No newline at end of file
diff --git "a/\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/src/main/resources/jdbc.config.properties" "b/\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/src/main/resources/jdbc.config.properties"
new file mode 100644
index 0000000..07fb30c
--- /dev/null
+++ "b/\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/src/main/resources/jdbc.config.properties"
@@ -0,0 +1,4 @@
+jdbc.driver=com.mysql.jdbc.Driver
+jdbc.url=jdbc:mysql://localhost:3306/db_ssm
+jdbc.user=root
+jdbc.pwd=123456
\ No newline at end of file
diff --git "a/\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/src/main/webapp/WEB-INF/web.xml" "b/\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/src/main/webapp/WEB-INF/web.xml"
new file mode 100644
index 0000000..9f88c1f
--- /dev/null
+++ "b/\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/src/main/webapp/WEB-INF/web.xml"
@@ -0,0 +1,7 @@
+
+
+
+ Archetype Created Web Application
+
diff --git "a/\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/src/main/webapp/index.html" "b/\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/src/main/webapp/index.html"
new file mode 100644
index 0000000..c568873
--- /dev/null
+++ "b/\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/src/main/webapp/index.html"
@@ -0,0 +1,10 @@
+
+
+
+
+ Title
+
+
+hellowwwww
+
+
\ No newline at end of file
diff --git "a/\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/src/main/webapp/index.jsp" "b/\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/src/main/webapp/index.jsp"
new file mode 100644
index 0000000..c38169b
--- /dev/null
+++ "b/\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/src/main/webapp/index.jsp"
@@ -0,0 +1,5 @@
+
+
+Hello World!
+
+
diff --git "a/\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/src/test/java/com/lz/UserTest.java" "b/\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/src/test/java/com/lz/UserTest.java"
new file mode 100644
index 0000000..312df80
--- /dev/null
+++ "b/\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/src/test/java/com/lz/UserTest.java"
@@ -0,0 +1,4 @@
+package com.lz;
+
+public class UserTest {
+}
diff --git "a/\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/target/classes/com/lz/mapper/UserMapper.xml" "b/\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/target/classes/com/lz/mapper/UserMapper.xml"
new file mode 100644
index 0000000..6fb3c9c
--- /dev/null
+++ "b/\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/target/classes/com/lz/mapper/UserMapper.xml"
@@ -0,0 +1,9 @@
+
+
+
+
+
\ No newline at end of file
diff --git "a/\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/target/classes/jdbc.config.properties" "b/\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/target/classes/jdbc.config.properties"
new file mode 100644
index 0000000..07fb30c
--- /dev/null
+++ "b/\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/target/classes/jdbc.config.properties"
@@ -0,0 +1,4 @@
+jdbc.driver=com.mysql.jdbc.Driver
+jdbc.url=jdbc:mysql://localhost:3306/db_ssm
+jdbc.user=root
+jdbc.pwd=123456
\ No newline at end of file
diff --git "a/\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/target/untitled/META-INF/MANIFEST.MF" "b/\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/target/untitled/META-INF/MANIFEST.MF"
new file mode 100644
index 0000000..d4aaa24
--- /dev/null
+++ "b/\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/target/untitled/META-INF/MANIFEST.MF"
@@ -0,0 +1,5 @@
+Manifest-Version: 1.0
+Created-By: IntelliJ IDEA
+Built-By: LZ
+Build-Jdk: 1.8.0_401
+
diff --git "a/\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/target/untitled/WEB-INF/classes/com/lz/mapper/UserMapper.xml" "b/\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/target/untitled/WEB-INF/classes/com/lz/mapper/UserMapper.xml"
new file mode 100644
index 0000000..6fb3c9c
--- /dev/null
+++ "b/\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/target/untitled/WEB-INF/classes/com/lz/mapper/UserMapper.xml"
@@ -0,0 +1,9 @@
+
+
+
+
+
\ No newline at end of file
diff --git "a/\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/target/untitled/WEB-INF/classes/jdbc.config.properties" "b/\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/target/untitled/WEB-INF/classes/jdbc.config.properties"
new file mode 100644
index 0000000..07fb30c
--- /dev/null
+++ "b/\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/target/untitled/WEB-INF/classes/jdbc.config.properties"
@@ -0,0 +1,4 @@
+jdbc.driver=com.mysql.jdbc.Driver
+jdbc.url=jdbc:mysql://localhost:3306/db_ssm
+jdbc.user=root
+jdbc.pwd=123456
\ No newline at end of file
diff --git "a/\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/target/untitled/WEB-INF/web.xml" "b/\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/target/untitled/WEB-INF/web.xml"
new file mode 100644
index 0000000..9f88c1f
--- /dev/null
+++ "b/\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/target/untitled/WEB-INF/web.xml"
@@ -0,0 +1,7 @@
+
+
+
+ Archetype Created Web Application
+
diff --git "a/\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/target/untitled/index.html" "b/\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/target/untitled/index.html"
new file mode 100644
index 0000000..c568873
--- /dev/null
+++ "b/\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/target/untitled/index.html"
@@ -0,0 +1,10 @@
+
+
+
+
+ Title
+
+
+hellowwwww
+
+
\ No newline at end of file
diff --git "a/\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/target/untitled/index.jsp" "b/\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/target/untitled/index.jsp"
new file mode 100644
index 0000000..c38169b
--- /dev/null
+++ "b/\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/target/untitled/index.jsp"
@@ -0,0 +1,5 @@
+
+
+Hello World!
+
+
diff --git "a/\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/untitled.iml" "b/\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/untitled.iml"
new file mode 100644
index 0000000..c390019
--- /dev/null
+++ "b/\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/untitled.iml"
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
--
Gitee
From cf64a6a34270c5332cf29985d81d40809fd9292e Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E6=9E=97=E5=B1=95?= <1742965070@qq.com>
Date: Tue, 28 May 2024 21:30:04 +0800
Subject: [PATCH 2/2] 1
---
.../java/com/lz/config/SpringConfig.java" | 4 +++-
.../java/com/lz/config/SpringMvcConfig.java" | 2 +-
.../com/lz/controller/UserController.java" | 2 +-
.../main/java/com/lz/mapper/UserMapper.java" | 4 +---
.../resources/com/lz/mapper/UserMapper.xml" | 4 ++--
.../src/test/java/com/lz/UserTest.java" | 21 +++++++++++++++++++
.../classes/com/lz/mapper/UserMapper.xml" | 4 ++--
.../classes/com/lz/mapper/UserMapper.xml" | 4 ++--
8 files changed, 33 insertions(+), 12 deletions(-)
diff --git "a/\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/src/main/java/com/lz/config/SpringConfig.java" "b/\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/src/main/java/com/lz/config/SpringConfig.java"
index 3c8d4bb..ea8c0a5 100644
--- "a/\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/src/main/java/com/lz/config/SpringConfig.java"
+++ "b/\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/src/main/java/com/lz/config/SpringConfig.java"
@@ -2,10 +2,12 @@ package com.lz.config;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
+import org.springframework.context.annotation.Import;
import org.springframework.context.annotation.PropertySource;
@Configuration
-@ComponentScan({"com.lz.service","com.lz.mapper"})
+@ComponentScan({"com.lz.service"})
@PropertySource({"classpath:jdbc.config.properties"})
+@Import({JdbcConfig.class,MyBatisConfig.class})
public class SpringConfig {
}
diff --git "a/\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/src/main/java/com/lz/config/SpringMvcConfig.java" "b/\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/src/main/java/com/lz/config/SpringMvcConfig.java"
index 9706d2c..66cc41c 100644
--- "a/\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/src/main/java/com/lz/config/SpringMvcConfig.java"
+++ "b/\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/src/main/java/com/lz/config/SpringMvcConfig.java"
@@ -10,7 +10,7 @@ import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
@ComponentScan("com.lz.controller")
@EnableWebMvc
public class SpringMvcConfig implements WebMvcConfigurer {
-
+ @Override
public void addResourceHandlers(ResourceHandlerRegistry registry) {
registry.addResourceHandler("/index.html").addResourceLocations("/index.html");
}
diff --git "a/\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/src/main/java/com/lz/controller/UserController.java" "b/\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/src/main/java/com/lz/controller/UserController.java"
index db0c215..0e89a07 100644
--- "a/\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/src/main/java/com/lz/controller/UserController.java"
+++ "b/\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/src/main/java/com/lz/controller/UserController.java"
@@ -7,7 +7,7 @@ import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
-@RequestMapping("/u")
+@RequestMapping("/users")
public class UserController {
@Autowired
public UserService userService;
diff --git "a/\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/src/main/java/com/lz/mapper/UserMapper.java" "b/\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/src/main/java/com/lz/mapper/UserMapper.java"
index 57b102c..b5197c8 100644
--- "a/\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/src/main/java/com/lz/mapper/UserMapper.java"
+++ "b/\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/src/main/java/com/lz/mapper/UserMapper.java"
@@ -7,7 +7,5 @@ import java.util.List;
@Repository
public interface UserMapper {
- List getUserList(){
- return null;
- };
+ List getUserList();
}
diff --git "a/\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/src/main/resources/com/lz/mapper/UserMapper.xml" "b/\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/src/main/resources/com/lz/mapper/UserMapper.xml"
index 6fb3c9c..af0cdc6 100644
--- "a/\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/src/main/resources/com/lz/mapper/UserMapper.xml"
+++ "b/\346\236\227\345\261\225/spring\345\244\215\344\271\240 5.28/untitled/src/main/resources/com/lz/mapper/UserMapper.xml"
@@ -2,8 +2,8 @@
-
-