commit 10d9d013b11e00850163dcc53e5359a636919fc8 Author: java_cuibaocheng@163.com Date: Mon Apr 15 11:16:42 2024 +0800 ai商城项目Initial Commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..d94c07b --- /dev/null +++ b/.gitignore @@ -0,0 +1,36 @@ +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/ + +mvnw* +.mvn/** \ No newline at end of file diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..9a9ff72 --- /dev/null +++ b/pom.xml @@ -0,0 +1,41 @@ + + + 4.0.0 + + org.springframework.boot + spring-boot-starter-parent + 3.2.4 + + + com.cn.tenlion.aishop + system_aishop + 0.0.1-SNAPSHOT + system_aishop + system_aishop + + 22 + + + + org.springframework.boot + spring-boot-starter + + + + org.springframework.boot + spring-boot-starter-test + test + + + + + + + org.springframework.boot + spring-boot-maven-plugin + + + + + diff --git a/src/main/java/com/cn/tenlion/aishop/system_aishop/SystemAishopApplication.java b/src/main/java/com/cn/tenlion/aishop/system_aishop/SystemAishopApplication.java new file mode 100644 index 0000000..4fddd79 --- /dev/null +++ b/src/main/java/com/cn/tenlion/aishop/system_aishop/SystemAishopApplication.java @@ -0,0 +1,13 @@ +package com.cn.tenlion.aishop.system_aishop; + +import org.springframework.boot.SpringApplication; +import org.springframework.boot.autoconfigure.SpringBootApplication; + +@SpringBootApplication +public class SystemAishopApplication { + + public static void main(String[] args) { + SpringApplication.run(SystemAishopApplication.class, args); + } + +} diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties new file mode 100644 index 0000000..0138ad7 --- /dev/null +++ b/src/main/resources/application.properties @@ -0,0 +1 @@ +spring.application.name=system_aishop diff --git a/src/test/java/com/cn/tenlion/aishop/system_aishop/SystemAishopApplicationTests.java b/src/test/java/com/cn/tenlion/aishop/system_aishop/SystemAishopApplicationTests.java new file mode 100644 index 0000000..2473ccd --- /dev/null +++ b/src/test/java/com/cn/tenlion/aishop/system_aishop/SystemAishopApplicationTests.java @@ -0,0 +1,13 @@ +package com.cn.tenlion.aishop.system_aishop; + +import org.junit.jupiter.api.Test; +import org.springframework.boot.test.context.SpringBootTest; + +@SpringBootTest +class SystemAishopApplicationTests { + + @Test + void contextLoads() { + } + +}