From 7909cbe135cd9b414548b6c857477b745691f4e9 Mon Sep 17 00:00:00 2001 From: chaos <7676076@qq.com> Date: Mon, 14 Jul 2025 16:02:50 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E5=88=9D=E5=A7=8B=E5=8C=96=E9=A1=B9?= =?UTF-8?q?=E7=9B=AE=E7=BB=93=E6=9E=84=E5=92=8C=E9=85=8D=E7=BD=AE-=20?= =?UTF-8?q?=E5=88=9B=E5=BB=BA=20Maven=20=E9=A1=B9=E7=9B=AE=E9=85=8D?= =?UTF-8?q?=E7=BD=AE=E6=96=87=E4=BB=B6=20pom.xml=20-=20=E6=B7=BB=E5=8A=A0?= =?UTF-8?q?=20Spring=20Boot=20=E7=9B=B8=E5=85=B3=E4=BE=9D=E8=B5=96=20-=20?= =?UTF-8?q?=E5=88=9B=E5=BB=BA=E9=A1=B9=E7=9B=AE=E5=90=AF=E5=8A=A8=E7=B1=BB?= =?UTF-8?q?=20PortalApplication=20-=20=E9=85=8D=E7=BD=AE=20.gitignore=20?= =?UTF-8?q?=E6=96=87=E4=BB=B6=EF=BC=8C=E5=BF=BD=E7=95=A5IDE=E5=92=8C?= =?UTF-8?q?=E7=B3=BB=E7=BB=9F=E4=BA=A7=E7=94=9F=E7=9A=84=E4=B8=B4=E6=97=B6?= =?UTF-8?q?=E6=96=87=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 39 +++++++++++++++++++ c_portal/pom.xml | 33 ++++++++++++++++ .../nopj/chaos/portal/PortalApplication.java | 11 ++++++ pom.xml | 37 ++++++++++++++++++ 4 files changed, 120 insertions(+) create mode 100644 .gitignore create mode 100644 c_portal/pom.xml create mode 100644 c_portal/src/main/java/cn/nopj/chaos/portal/PortalApplication.java create mode 100644 pom.xml diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a91c35d --- /dev/null +++ b/.gitignore @@ -0,0 +1,39 @@ +target/ +!.mvn/wrapper/maven-wrapper.jar +!**/src/main/**/target/ +!**/src/test/**/target/ + +### IntelliJ IDEA ### +.idea/modules.xml +.idea/jarRepositories.xml +.idea/compiler.xml +.idea/libraries/ +*.iws +*.iml +*.ipr + +### Eclipse ### +.apt_generated +.classpath +.factorypath +.project +.settings +.springBeans +.sts4-cache + +### NetBeans ### +/nbproject/private/ +/nbbuild/ +/dist/ +/nbdist/ +/.nb-gradle/ +build/ +!**/src/main/**/build/ +!**/src/test/**/build/ + +### VS Code ### +.vscode/ + +### Mac OS ### +.DS_Store +/.idea/ diff --git a/c_portal/pom.xml b/c_portal/pom.xml new file mode 100644 index 0000000..fc7cb5f --- /dev/null +++ b/c_portal/pom.xml @@ -0,0 +1,33 @@ + + + 4.0.0 + + cn.nopj + chaos_api + 1.0-SNAPSHOT + + + c_portal + + + 21 + 21 + UTF-8 + + + + + + org.springframework.boot + spring-boot-starter-web + + + + org.springframework.boot + spring-boot-autoconfigure + + + + \ No newline at end of file diff --git a/c_portal/src/main/java/cn/nopj/chaos/portal/PortalApplication.java b/c_portal/src/main/java/cn/nopj/chaos/portal/PortalApplication.java new file mode 100644 index 0000000..9551801 --- /dev/null +++ b/c_portal/src/main/java/cn/nopj/chaos/portal/PortalApplication.java @@ -0,0 +1,11 @@ +package cn.nopj.chaos.portal; + +import org.springframework.boot.SpringApplication; +import org.springframework.boot.autoconfigure.SpringBootApplication; + +@SpringBootApplication(scanBasePackages = "cn.nopj.chaos") +public class PortalApplication { + public static void main(String[] args) { + SpringApplication.run(PortalApplication.class,args); + } +} diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..5615fb6 --- /dev/null +++ b/pom.xml @@ -0,0 +1,37 @@ + + + 4.0.0 + + cn.nopj + chaos_api + 1.0-SNAPSHOT + pom + + c_portal + + + + 21 + 21 + UTF-8 + + + + + + + org.springframework.boot + spring-boot-starter-web + 3.5.3 + + + + org.springframework.boot + spring-boot-autoconfigure + 3.5.3 + + + + \ No newline at end of file