From f6ef170359431b3481e6f5452f3813082c9b651d Mon Sep 17 00:00:00 2001 From: meng <1262474327@qq.com> Date: Mon, 15 Apr 2024 17:08:27 +0800 Subject: [PATCH 1/5] Maven --- untitled2/.idea/.gitignore | 8 +++++ untitled2/.idea/compiler.xml | 18 +++++++++++ untitled2/.idea/encodings.xml | 6 ++++ untitled2/.idea/jarRepositories.xml | 20 ++++++++++++ untitled2/.idea/misc.xml | 19 +++++++++++ untitled2/.idea/runConfigurations.xml | 10 ++++++ untitled2/pom.xml | 30 ++++++++++++++++++ untitled2/src/main/java/com/hao/App.java | 11 +++++++ .../hao/Controller/HelloWorldController.java | 12 +++++++ untitled2/target/classes/com/hao/App.class | Bin 0 -> 679 bytes .../hao/Controller/HelloWorldController.class | Bin 0 -> 625 bytes .../target/maven-archiver/pom.properties | 3 ++ .../compile/default-compile/createdFiles.lst | 0 .../compile/default-compile/inputFiles.lst | 2 ++ .../default-testCompile/createdFiles.lst | 0 .../default-testCompile/inputFiles.lst | 0 untitled2/target/untitled2-1.0-SNAPSHOT.jar | Bin 0 -> 2982 bytes 17 files changed, 139 insertions(+) create mode 100644 untitled2/.idea/.gitignore create mode 100644 untitled2/.idea/compiler.xml create mode 100644 untitled2/.idea/encodings.xml create mode 100644 untitled2/.idea/jarRepositories.xml create mode 100644 untitled2/.idea/misc.xml create mode 100644 untitled2/.idea/runConfigurations.xml create mode 100644 untitled2/pom.xml create mode 100644 untitled2/src/main/java/com/hao/App.java create mode 100644 untitled2/src/main/java/com/hao/Controller/HelloWorldController.java create mode 100644 untitled2/target/classes/com/hao/App.class create mode 100644 untitled2/target/classes/com/hao/Controller/HelloWorldController.class create mode 100644 untitled2/target/maven-archiver/pom.properties create mode 100644 untitled2/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst create mode 100644 untitled2/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst create mode 100644 untitled2/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst create mode 100644 untitled2/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst create mode 100644 untitled2/target/untitled2-1.0-SNAPSHOT.jar diff --git a/untitled2/.idea/.gitignore b/untitled2/.idea/.gitignore new file mode 100644 index 0000000..73f69e0 --- /dev/null +++ b/untitled2/.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/untitled2/.idea/compiler.xml b/untitled2/.idea/compiler.xml new file mode 100644 index 0000000..0a697b7 --- /dev/null +++ b/untitled2/.idea/compiler.xml @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/untitled2/.idea/encodings.xml b/untitled2/.idea/encodings.xml new file mode 100644 index 0000000..63e9001 --- /dev/null +++ b/untitled2/.idea/encodings.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/untitled2/.idea/jarRepositories.xml b/untitled2/.idea/jarRepositories.xml new file mode 100644 index 0000000..abb532a --- /dev/null +++ b/untitled2/.idea/jarRepositories.xml @@ -0,0 +1,20 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/untitled2/.idea/misc.xml b/untitled2/.idea/misc.xml new file mode 100644 index 0000000..f255073 --- /dev/null +++ b/untitled2/.idea/misc.xml @@ -0,0 +1,19 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/untitled2/.idea/runConfigurations.xml b/untitled2/.idea/runConfigurations.xml new file mode 100644 index 0000000..797acea --- /dev/null +++ b/untitled2/.idea/runConfigurations.xml @@ -0,0 +1,10 @@ + + + + + + \ No newline at end of file diff --git a/untitled2/pom.xml b/untitled2/pom.xml new file mode 100644 index 0000000..5c0f397 --- /dev/null +++ b/untitled2/pom.xml @@ -0,0 +1,30 @@ + + + 4.0.0 + + org.example + untitled2 + 1.0-SNAPSHOT + + + 8 + 8 + + + org.springframework.boot + spring-boot-starter-parent + 2.7.1 + + + + + org.example + untitled2 + 1.0-SNAPSHOT + test + + + + \ No newline at end of file diff --git a/untitled2/src/main/java/com/hao/App.java b/untitled2/src/main/java/com/hao/App.java new file mode 100644 index 0000000..ba3f33b --- /dev/null +++ b/untitled2/src/main/java/com/hao/App.java @@ -0,0 +1,11 @@ +package com.hao; + +import org.springframework.boot.SpringApplication; +import org.springframework.boot.autoconfigure.SpringBootApplication; + +@SpringBootApplication +public class App { + public static void main(String [] args){ + SpringApplication.run(App.class,args); + } +} \ No newline at end of file diff --git a/untitled2/src/main/java/com/hao/Controller/HelloWorldController.java b/untitled2/src/main/java/com/hao/Controller/HelloWorldController.java new file mode 100644 index 0000000..0d0091d --- /dev/null +++ b/untitled2/src/main/java/com/hao/Controller/HelloWorldController.java @@ -0,0 +1,12 @@ +package com.hao.Controller; + +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RestController; + +@RestController +public class HelloWorldController { + @RequestMapping("/hello") + public String Shello(){ + return "hello world"; + } +} \ No newline at end of file diff --git a/untitled2/target/classes/com/hao/App.class b/untitled2/target/classes/com/hao/App.class new file mode 100644 index 0000000000000000000000000000000000000000..4681d14d54c82ff56d6c2464f0c648765a9a1f90 GIT binary patch literal 679 zcmZ`$!A{#i5PcgG984$>3I*C8dJ8$Q7sSOC5=83BKt-zbz-et3XTjc$)@$0|;zY%P z58$H^vj!dG{aW!GQJUa zg6BeKeCVvwSyYP%n^D`w9GGG4RJyUb`YEg^q?48k!=b5cDt{RYoAGkuMXx>8A7gKMVvOUWawawUT4j}$d{~#95J1GaN^63s zgBBJUmS+|Vu-n0Be4!DiTb(C2GIb37|Ej(5&v4VJZAIrvdNbD<pn@f`owovnSf*%+ z;uRwC&4)D^(C#++|FH0T+8+|)YXj<P?2+iET@U`A8Xg zk@jNgu0^aVQ;BR#=%#Qg#G_=+cU8hrk6O0JyTbAlYrL~sOUKWo*7n9a-5w_o81mha zXIQS)qkHirxE7|vue?*HL*;5CHD2{(QzeRYj*YQicx4UA>_^shc+wBhJ12Vb*}4b* zEMp!k)8^s_%Nz1Bm5DzW{r>RT{FBfrO;O+@`O=k5T}z&-FkAJvUUx%x{}WC8#HeND zQDB%E2yRfTy3Mfl$3-zLjF)p6-^-TACbIN*;bcI2M1gFPB2J!>&u_nhy$;G#WJ4JQ zm?m2u0#L#XMU3KEdL)o{C)k GE(6~N8<=PS literal 0 HcmV?d00001 diff --git a/untitled2/target/maven-archiver/pom.properties b/untitled2/target/maven-archiver/pom.properties new file mode 100644 index 0000000..2dea509 --- /dev/null +++ b/untitled2/target/maven-archiver/pom.properties @@ -0,0 +1,3 @@ +artifactId=untitled2 +groupId=org.example +version=1.0-SNAPSHOT diff --git a/untitled2/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst b/untitled2/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst new file mode 100644 index 0000000..e69de29 diff --git a/untitled2/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst b/untitled2/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst new file mode 100644 index 0000000..a2d10bf --- /dev/null +++ b/untitled2/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst @@ -0,0 +1,2 @@ +E:\code\java\untitled2\src\main\java\com\hao\Controller\HelloWorldController.java +E:\code\java\untitled2\src\main\java\com\hao\App.java diff --git a/untitled2/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst b/untitled2/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst new file mode 100644 index 0000000..e69de29 diff --git a/untitled2/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst b/untitled2/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst new file mode 100644 index 0000000..e69de29 diff --git a/untitled2/target/untitled2-1.0-SNAPSHOT.jar b/untitled2/target/untitled2-1.0-SNAPSHOT.jar new file mode 100644 index 0000000000000000000000000000000000000000..be8c769c21687ab17c37d7f536b0a4bb15d1e80e GIT binary patch literal 2982 zcmWIWW@h1HVBlb2=vY)8!GHuffoxyb5Jz24KR5jVpfVAlG7hjZ&CpQQ8ldz{AO?ye zl=(XPdAhjFmk?(jE0alTbn2$%5Fp?_g{JfH){G6QBA|wsyp~;UNOu30=sd;!5OJgd|FG|-- ztw_u*$VtVcQ5C<&(!7$)lAP2OBd`&W_&mL!I$~>Q`cYA!R*7{Fl+F`*WiaHbqf{V<)8fnhll1A`#Y1W*`* zLeR0GKrcBbvADQ2&^KS$P@vZDa?U2-49^8ySo!Wa@%?D3iWJdwd9J=z{eWd2;JC6sC3t+L$5-fZQG=ZCc9^C$Uk4^eg2_wzkC z{m_S#S)zfv1iXyr@U4FwU8rB7S8^=rV!=J+Ek86DR(7yF;@`j1EEPt30`5F|9dxE^1vw*Q!2#iHtq*z2s;U1|uIr-uF zML8)5K}ZZw4f6G8G8CB0#LcmyJ&3jQ=zqm)ztql-uH&Zj}G*?CiRlntgkj4+vi2n$Xy5lk+S=oBcM+rsYnY)ou#0 z`6V1FvvwWlT=UE6VF4?OKDJBg=2uT+-yvPzdSY^gim=BY#2ux1!Sh>A8D3Ckyh;S=w2%aINy? zr{afX7k|6Graf=h|IW6uhbvS+D0nZB;C|;5Tg+5lzej`V>CdNkSe)-|-N2n$W4%4d zA*OhXWsgQx)4kjEte=FIf6mx!IHOs0%hE_jkp&&|687|j_SH<7aCz#L&-_`5jkEk# zXn#ERzj1dBzeIeas?_Yss9>Ydv1_m8qq`}KM|zjul6 zj+)EkdsXi&zt5|_H8C?*>>uNjQ%0-h`7UAJ zSE%sYwUAcdTzVPMYbEpb6+!EQaq@8<>IUx$&;&gRPBpjCnuiW z#DBL?t&-7=Q_HU1=}sJ{zH3~AOV|5UrjH#DPPeXh@=ay?)wDs=f_umNMh>mUmtptI zG`u`MS8ba#EuipcquHF-aZZ1y%u%s1a{kP;giUgnqmMe7t?5__zqm zhAVqs<+Y{%_$>YBy$dXEHEFz zbRo(&U~P%87F)%RFu)IJ0NksvY96;{P(_c>T#cz2Irrjo1*qaj7_l0Y8!dnFB+R-Z?g!ccyk`1OEDOPY-MaV{DD Date: Mon, 15 Apr 2024 18:47:43 +0800 Subject: [PATCH 2/5] =?UTF-8?q?=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/main/java/com/hao/Controller/HelloWorldController.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/untitled2/src/main/java/com/hao/Controller/HelloWorldController.java b/untitled2/src/main/java/com/hao/Controller/HelloWorldController.java index 0d0091d..0f1e40f 100644 --- a/untitled2/src/main/java/com/hao/Controller/HelloWorldController.java +++ b/untitled2/src/main/java/com/hao/Controller/HelloWorldController.java @@ -7,6 +7,6 @@ import org.springframework.web.bind.annotation.RestController; public class HelloWorldController { @RequestMapping("/hello") public String Shello(){ - return "hello world"; + return "HELLO WORLD"; } } \ No newline at end of file -- Gitee From 60c94d228d23f8b01d14e0f34e0568922e2286df Mon Sep 17 00:00:00 2001 From: meng <1262474327@qq.com> Date: Mon, 15 Apr 2024 18:53:59 +0800 Subject: [PATCH 3/5] =?UTF-8?q?=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- untitled2/src/main/java/com/hao/Controller/hello.java | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 untitled2/src/main/java/com/hao/Controller/hello.java diff --git a/untitled2/src/main/java/com/hao/Controller/hello.java b/untitled2/src/main/java/com/hao/Controller/hello.java new file mode 100644 index 0000000..e69de29 -- Gitee From 407ca8ea847674341e4af004c7d2939b3a327dcd Mon Sep 17 00:00:00 2001 From: meng <1262474327@qq.com> Date: Mon, 15 Apr 2024 18:57:22 +0800 Subject: [PATCH 4/5] =?UTF-8?q?=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- hello.java | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 hello.java diff --git a/hello.java b/hello.java new file mode 100644 index 0000000..e69de29 -- Gitee From 9d68415fd8e61ed4d0c2be0d0af26cb9987c682d Mon Sep 17 00:00:00 2001 From: meng <1262474327@qq.com> Date: Mon, 15 Apr 2024 18:57:53 +0800 Subject: [PATCH 5/5] =?UTF-8?q?=E5=88=A0=E9=99=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- hello.java | 0 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 hello.java diff --git a/hello.java b/hello.java deleted file mode 100644 index e69de29..0000000 -- Gitee