From cb31c17ce41a6d45fa1450129cbe8133b1d930e3 Mon Sep 17 00:00:00 2001 From: xuxin <840198532@qq.com> Date: Tue, 16 Sep 2025 16:33:32 +0800 Subject: [PATCH] =?UTF-8?q?http=E8=AF=B7=E6=B1=82-=E5=A4=8D=E6=9D=82-?= =?UTF-8?q?=E6=95=B0=E7=BB=84-=E9=9B=86=E5=90=88-=E6=97=A5=E6=9C=9F?= =?UTF-8?q?=E5=8F=82=E6=95=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- springboot-web-req-resp/.gitignore | 33 ++++++++++++++ springboot-web-req-resp/pom.xml | 72 ++++++++++++++++++++++++++++++ 2 files changed, 105 insertions(+) create mode 100644 springboot-web-req-resp/.gitignore create mode 100644 springboot-web-req-resp/pom.xml diff --git a/springboot-web-req-resp/.gitignore b/springboot-web-req-resp/.gitignore new file mode 100644 index 0000000..549e00a --- /dev/null +++ b/springboot-web-req-resp/.gitignore @@ -0,0 +1,33 @@ +HELP.md +target/ +!.mvn/wrapper/maven-wrapper.jar +!**/src/main/**/target/ +!**/src/test/**/target/ + +### STS ### +.apt_generated +.classpath +.factorypath +.project +.settings +.springBeans +.sts4-cache + +### IntelliJ IDEA ### +.idea +*.iws +*.iml +*.ipr + +### NetBeans ### +/nbproject/private/ +/nbbuild/ +/dist/ +/nbdist/ +/.nb-gradle/ +build/ +!**/src/main/**/build/ +!**/src/test/**/build/ + +### VS Code ### +.vscode/ diff --git a/springboot-web-req-resp/pom.xml b/springboot-web-req-resp/pom.xml new file mode 100644 index 0000000..ea7ff77 --- /dev/null +++ b/springboot-web-req-resp/pom.xml @@ -0,0 +1,72 @@ + + + 4.0.0 + com.inmind + springboot-web-req-resp + 0.0.1-SNAPSHOT + springboot-web-req-resp + springboot-web-req-resp + + 11 + UTF-8 + UTF-8 + 2.7.6 + + + + org.springframework.boot + spring-boot-starter-web + + + + org.springframework.boot + spring-boot-starter-test + test + + + + + + org.springframework.boot + spring-boot-dependencies + ${spring-boot.version} + pom + import + + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.8.1 + + 11 + 11 + UTF-8 + + + + org.springframework.boot + spring-boot-maven-plugin + ${spring-boot.version} + + com.inmind.SpringbootWebReqRespApplication + true + + + + repackage + + repackage + + + + + + + +