commit 46fc80223b7445248a25f726c37f22b1e51b6033 Author: lbw <1192299468@qq.com> Date: Tue Dec 9 18:18:35 2025 +0800 初始化 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..86cd45e --- /dev/null +++ b/.gitignore @@ -0,0 +1,14 @@ +# 默认忽略的文件 +/shelf/ +/.idea/workspace.xml +# 已忽略包含查询文件的默认文件夹 +/queries/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml +# 基于编辑器的 HTTP 客户端请求 +/httpRequests/ +.idea +enlish-service/target +enlish-service/src/test +enlish-framework/enlish-common/target \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..8e5704f --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,15 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..8306744 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/enlish-service/pom.xml b/enlish-service/pom.xml new file mode 100644 index 0000000..9ca1145 --- /dev/null +++ b/enlish-service/pom.xml @@ -0,0 +1,43 @@ + + + 4.0.0 + + + + com.yinlihupo + enlish + ${revision} + + + + jar + + enlish-service + ${project.artifactId} + 小哈书:认证服务(负责处理用户登录、注册、账号注销等) + + + + org.springframework.boot + spring-boot-starter-web + + + + org.springframework.boot + spring-boot-starter-test + test + + + + + + + org.springframework.boot + spring-boot-maven-plugin + + + + + + diff --git a/enlish-service/src/main/java/com/yinlihupo/enlish/service/EnlishServiceApplication.java b/enlish-service/src/main/java/com/yinlihupo/enlish/service/EnlishServiceApplication.java new file mode 100644 index 0000000..e74b286 --- /dev/null +++ b/enlish-service/src/main/java/com/yinlihupo/enlish/service/EnlishServiceApplication.java @@ -0,0 +1,13 @@ +package com.yinlihupo.enlish.service; + +import org.springframework.boot.SpringApplication; +import org.springframework.boot.autoconfigure.SpringBootApplication; + +@SpringBootApplication +public class EnlishServiceApplication { + + public static void main(String[] args) { + SpringApplication.run(EnlishServiceApplication.class, args); + } + +} diff --git a/enlish-service/src/main/resources/application.yml b/enlish-service/src/main/resources/application.yml new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/enlish-service/src/main/resources/application.yml @@ -0,0 +1 @@ + diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..7060991 --- /dev/null +++ b/pom.xml @@ -0,0 +1,147 @@ + + + 4.0.0 + + com.yinlihupo + enlish + ${revision} + + + ${project.artifactId} + + 智能化英语教学 + + + pom + + + + enlish-service + + + + + 0.0.1-SNAPSHOT + + 17 + ${java.version} + ${java.version} + + UTF-8 + + 3.8.1 + + + 1.18.30 + 3.4.12 + + 1.5.0 + + + + + + + + + org.projectlombok + lombok + ${lombok.version} + + + + org.springframework.boot + spring-boot-dependencies + ${spring-boot.version} + pom + import + + + + + + + + + + + org.springframework.boot + spring-boot-maven-plugin + ${spring-boot.version} + + + repackage + + repackage + + + + + + org.apache.maven.plugins + maven-compiler-plugin + ${maven-compiler-plugin.version} + + ${java.version} + ${java.version} + ${project.build.sourceEncoding} + + + org.projectlombok + lombok + ${lombok.version} + + + + + + + + + + + org.codehaus.mojo + flatten-maven-plugin + ${flatten-maven-plugin.version} + + resolveCiFriendliesOnly + true + + + + flatten + process-resources + + flatten + + + + flatten.clean + clean + + clean + + + + + + + + + + + + huaweicloud + huawei + https://mirrors.huaweicloud.com/repository/maven/ + + + aliyunmaven + aliyun + https://maven.aliyun.com/repository/public + + + +