commit a49dbd54da82ead5e4b247d735011020c0cbecef
Author: chaiyapeng <3535863041@qq.com>
Date: Tue Aug 27 11:57:40 2024 +0800
初始化
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..5ff6309
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,38 @@
+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
\ No newline at end of file
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/encodings.xml b/.idea/encodings.xml
new file mode 100644
index 0000000..4c59e9b
--- /dev/null
+++ b/.idea/encodings.xml
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/misc.xml b/.idea/misc.xml
new file mode 100644
index 0000000..82dbec8
--- /dev/null
+++ b/.idea/misc.xml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Dockerfile b/Dockerfile
new file mode 100644
index 0000000..8f6e8ab
--- /dev/null
+++ b/Dockerfile
@@ -0,0 +1,12 @@
+FROM anolis-registry.cn-zhangjiakou.cr.aliyuncs.com/openanolis/dragonwell:17.0.4.0.4.8-standard-ga-8.6
+
+ENV TZ=Asia/Shanghai
+
+RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo '$TZ' > /etc/timezone
+
+VOLUME ["/home/logs/cloud-port"]
+
+COPY ./cloud-port-server/target/cloud-port.jar /home/app.jar
+
+ENTRYPOINT ["java","-jar"]
+CMD ["/home/app.jar"]
diff --git a/cloud-port-client/pom.xml b/cloud-port-client/pom.xml
new file mode 100644
index 0000000..8059f39
--- /dev/null
+++ b/cloud-port-client/pom.xml
@@ -0,0 +1,35 @@
+
+
+ 4.0.0
+
+ com.muyu
+ cloud-port
+ 1.0.0
+
+
+ cloud-port-client
+
+ 1.0.0
+
+
+ 17
+ 17
+ UTF-8
+
+
+
+
+
+
+ com.muyu
+ cloud-port-common
+ 1.0.0
+
+
+
+
+
+
+
diff --git a/cloud-port-client/src/main/java/com/muyu/Main.java b/cloud-port-client/src/main/java/com/muyu/Main.java
new file mode 100644
index 0000000..fedef64
--- /dev/null
+++ b/cloud-port-client/src/main/java/com/muyu/Main.java
@@ -0,0 +1,14 @@
+package com.muyu;
+
+/**
+ * @Author:chaiyapeng
+ * @Package:com.muyu
+ * @Project:Default (Template) Project
+ * @name:${NAME}
+ * @Date:2024/8/27 11:47
+ */
+public class Main {
+ public static void main(String[] args) {
+ System.out.println("Hello world!");
+ }
+}
diff --git a/cloud-port-common/pom.xml b/cloud-port-common/pom.xml
new file mode 100644
index 0000000..1eb573d
--- /dev/null
+++ b/cloud-port-common/pom.xml
@@ -0,0 +1,42 @@
+
+
+ 4.0.0
+
+ com.muyu
+ cloud-port
+ 1.0.0
+
+
+ 1.0.0
+ cloud-port-common
+
+
+ 17
+ 17
+ UTF-8
+
+
+
+
+ com.muyu
+ cloud-common-core
+
+
+
+
+ com.baomidou
+ mybatis-plus-generator
+ 3.5.7
+
+
+
+ org.apache.velocity
+ velocity-engine-core
+ 2.3
+
+
+
+
+
diff --git a/cloud-port-common/src/main/java/com/muyu/Main.java b/cloud-port-common/src/main/java/com/muyu/Main.java
new file mode 100644
index 0000000..fedef64
--- /dev/null
+++ b/cloud-port-common/src/main/java/com/muyu/Main.java
@@ -0,0 +1,14 @@
+package com.muyu;
+
+/**
+ * @Author:chaiyapeng
+ * @Package:com.muyu
+ * @Project:Default (Template) Project
+ * @name:${NAME}
+ * @Date:2024/8/27 11:47
+ */
+public class Main {
+ public static void main(String[] args) {
+ System.out.println("Hello world!");
+ }
+}
diff --git a/cloud-port-remote/pom.xml b/cloud-port-remote/pom.xml
new file mode 100644
index 0000000..054e24a
--- /dev/null
+++ b/cloud-port-remote/pom.xml
@@ -0,0 +1,30 @@
+
+
+ 4.0.0
+
+ com.muyu
+ cloud-port
+ 1.0.0
+
+
+ cloud-port-remote
+ 1.0.0
+
+ 17
+ 17
+ UTF-8
+
+
+
+
+
+
+ com.muyu
+ cloud-port-common
+
+
+
+
+
diff --git a/cloud-port-remote/src/main/java/com/muyu/Main.java b/cloud-port-remote/src/main/java/com/muyu/Main.java
new file mode 100644
index 0000000..173408e
--- /dev/null
+++ b/cloud-port-remote/src/main/java/com/muyu/Main.java
@@ -0,0 +1,14 @@
+package com.muyu;
+
+/**
+ * @Author:chaiyapeng
+ * @Package:com.muyu
+ * @Project:Default (Template) Project
+ * @name:${NAME}
+ * @Date:2024/8/27 11:48
+ */
+public class Main {
+ public static void main(String[] args) {
+ System.out.println("Hello world!");
+ }
+}
diff --git a/cloud-port-server/pom.xml b/cloud-port-server/pom.xml
new file mode 100644
index 0000000..2f28073
--- /dev/null
+++ b/cloud-port-server/pom.xml
@@ -0,0 +1,164 @@
+
+
+ 4.0.0
+
+ com.muyu
+ cloud-port
+ 1.0.0
+
+
+ cloud-port-server
+
+ 1.0.0
+
+
+ 17
+ 17
+ UTF-8
+
+
+
+
+
+ com.alibaba.cloud
+ spring-cloud-starter-alibaba-nacos-discovery
+
+
+
+
+ com.alibaba.cloud
+ spring-cloud-starter-alibaba-nacos-config
+
+
+
+
+ com.alibaba.cloud
+ spring-cloud-starter-alibaba-sentinel
+
+
+
+
+ org.springframework.boot
+ spring-boot-starter-actuator
+
+
+
+
+ com.mysql
+ mysql-connector-j
+
+
+
+
+ com.muyu
+ cloud-common-datasource
+
+
+
+
+ com.muyu
+ cloud-common-datascope
+
+
+
+
+ com.muyu
+ cloud-common-log
+
+
+
+
+ com.muyu
+ cloud-common-api-doc
+
+
+
+
+ com.muyu
+ cloud-common-xxl
+
+
+
+
+
+
+
+
+
+ com.muyu
+ cloud-mart-common
+
+
+
+ commons-beanutils
+ commons-beanutils
+ 1.9.3
+
+
+ commons-lang
+ commons-lang
+ 2.6
+
+
+ commons-logging
+ commons-logging
+ 1.2
+
+
+ net.sf.json-lib
+ json-lib
+ 2.4
+ jdk13
+
+
+
+ net.sf.json-lib
+ json-lib
+ 2.2.3
+ jdk15
+
+
+
+
+ com.github.tobato
+ fastdfs-client
+ 1.26.5
+
+
+
+
+
+
+
+
+
+ cloud-mart
+
+
+ org.springframework.boot
+ spring-boot-maven-plugin
+
+
+
+ repackage
+
+
+
+
+
+
+
+ org.apache.maven.plugins
+ maven-deploy-plugin
+
+ true
+
+
+
+
+
+
+
+
diff --git a/cloud-port-server/src/main/java/com/muyu/Main.java b/cloud-port-server/src/main/java/com/muyu/Main.java
new file mode 100644
index 0000000..173408e
--- /dev/null
+++ b/cloud-port-server/src/main/java/com/muyu/Main.java
@@ -0,0 +1,14 @@
+package com.muyu;
+
+/**
+ * @Author:chaiyapeng
+ * @Package:com.muyu
+ * @Project:Default (Template) Project
+ * @name:${NAME}
+ * @Date:2024/8/27 11:48
+ */
+public class Main {
+ public static void main(String[] args) {
+ System.out.println("Hello world!");
+ }
+}
diff --git a/pom.xml b/pom.xml
new file mode 100644
index 0000000..70a56e6
--- /dev/null
+++ b/pom.xml
@@ -0,0 +1,30 @@
+
+
+ 4.0.0
+
+
+ com.muyu
+ cloud-server-parent
+ 3.6.4
+
+
+ cloud-port
+
+ 1.0.0
+ pom
+
+ cloud-port-client
+ cloud-port-common
+ cloud-port-remote
+ cloud-port-server
+
+
+
+ 17
+ 17
+ UTF-8
+
+
+