From 4e495137619e11f48e2417e3f74d7eb9122f3dc3 Mon Sep 17 00:00:00 2001 From: Sakatoku Date: Sun, 14 Apr 2024 23:27:12 +0800 Subject: [PATCH 1/2] =?UTF-8?q?=E5=88=9D=E5=A7=8B=E5=8C=96=E9=A1=B9?= =?UTF-8?q?=E7=9B=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .idea/.gitignore | 8 ++++++++ .idea/compiler.xml | 17 +++++++++++++++++ .idea/encodings.xml | 9 +++++++++ .idea/jarRepositories.xml | 20 ++++++++++++++++++++ .idea/misc.xml | 20 ++++++++++++++++++++ .idea/modules.xml | 8 ++++++++ .idea/vcs.xml | 7 +++++++ .idea/web-framework.iml | 9 +++++++++ 8 files changed, 98 insertions(+) create mode 100644 .idea/.gitignore create mode 100644 .idea/compiler.xml create mode 100644 .idea/encodings.xml create mode 100644 .idea/jarRepositories.xml create mode 100644 .idea/misc.xml create mode 100644 .idea/modules.xml create mode 100644 .idea/vcs.xml create mode 100644 .idea/web-framework.iml diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..35410ca --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,8 @@ +# 默认忽略的文件 +/shelf/ +/workspace.xml +# 基于编辑器的 HTTP 客户端请求 +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/.idea/compiler.xml b/.idea/compiler.xml new file mode 100644 index 0000000..d58c865 --- /dev/null +++ b/.idea/compiler.xml @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/encodings.xml b/.idea/encodings.xml new file mode 100644 index 0000000..a4a31d2 --- /dev/null +++ b/.idea/encodings.xml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/jarRepositories.xml b/.idea/jarRepositories.xml new file mode 100644 index 0000000..712ab9d --- /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..a242321 --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,20 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..8e99870 --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..cf9dcef --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/.idea/web-framework.iml b/.idea/web-framework.iml new file mode 100644 index 0000000..d6ebd48 --- /dev/null +++ b/.idea/web-framework.iml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file -- Gitee From 04e92eb69b111460640d9a04809ccbe81b5829b8 Mon Sep 17 00:00:00 2001 From: Sakatoku Date: Sun, 14 Apr 2024 23:44:21 +0800 Subject: [PATCH 2/2] =?UTF-8?q?=E5=88=9D=E5=A7=8B=E5=8C=96=E9=A1=B9?= =?UTF-8?q?=E7=9B=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .idea/misc.xml | 2 +- .idea/vcs.xml | 1 - Login/.gitignore | 33 +++++++++ Login/pom.xml | 72 +++++++++++++++++++ .../com/example/login/LoginApplication.java | 13 ++++ .../example/login/LoginApplicationTests.java | 13 ++++ 6 files changed, 132 insertions(+), 2 deletions(-) create mode 100644 Login/.gitignore create mode 100644 Login/pom.xml create mode 100644 Login/src/main/java/com/example/login/LoginApplication.java create mode 100644 Login/src/test/java/com/example/login/LoginApplicationTests.java diff --git a/.idea/misc.xml b/.idea/misc.xml index a242321..2d2c351 100644 --- a/.idea/misc.xml +++ b/.idea/misc.xml @@ -14,7 +14,7 @@ - + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml index cf9dcef..35eb1dd 100644 --- a/.idea/vcs.xml +++ b/.idea/vcs.xml @@ -2,6 +2,5 @@ - \ No newline at end of file diff --git a/Login/.gitignore b/Login/.gitignore new file mode 100644 index 0000000..549e00a --- /dev/null +++ b/Login/.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/Login/pom.xml b/Login/pom.xml new file mode 100644 index 0000000..355a03e --- /dev/null +++ b/Login/pom.xml @@ -0,0 +1,72 @@ + + + 4.0.0 + com.example + Login + 0.0.1-SNAPSHOT + Login + Login + + 1.8 + UTF-8 + UTF-8 + 2.6.13 + + + + org.springframework.boot + spring-boot-starter + + + + 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 + + 1.8 + 1.8 + UTF-8 + + + + org.springframework.boot + spring-boot-maven-plugin + ${spring-boot.version} + + com.example.login.LoginApplication + true + + + + repackage + + repackage + + + + + + + + diff --git a/Login/src/main/java/com/example/login/LoginApplication.java b/Login/src/main/java/com/example/login/LoginApplication.java new file mode 100644 index 0000000..8d551cb --- /dev/null +++ b/Login/src/main/java/com/example/login/LoginApplication.java @@ -0,0 +1,13 @@ +package com.example.login; + +import org.springframework.boot.SpringApplication; +import org.springframework.boot.autoconfigure.SpringBootApplication; + +@SpringBootApplication +public class LoginApplication { + + public static void main(String[] args) { + SpringApplication.run(LoginApplication.class, args); + } + +} diff --git a/Login/src/test/java/com/example/login/LoginApplicationTests.java b/Login/src/test/java/com/example/login/LoginApplicationTests.java new file mode 100644 index 0000000..22cb6ce --- /dev/null +++ b/Login/src/test/java/com/example/login/LoginApplicationTests.java @@ -0,0 +1,13 @@ +package com.example.login; + +import org.junit.jupiter.api.Test; +import org.springframework.boot.test.context.SpringBootTest; + +@SpringBootTest +class LoginApplicationTests { + + @Test + void contextLoads() { + } + +} -- Gitee