多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
**1. 创建 SpringBoot 项目** ![](https://img.kancloud.cn/d1/f0/d1f02099fd1b7d0ab195686fdb8984d4_1523x915.png) ![](https://img.kancloud.cn/80/74/80744a27fb1c55db771be6c7bbcd847c_1534x921.png) <br/> **2. 默认的项目目录结构** ![](https://img.kancloud.cn/bf/27/bf274490ac683d3bda0bcd7ec171c586_1669x508.png) ``` |—— learn-boot | |—— src | | |—— main | | | |—— java | | | | |—— learn.boot.BootApplication #启动类,项目启动的入口 | | | |—— resources | | | | |—— static #放一些静态资源,js、css、图片等 | | | | |—— templates #放所有的模板页面,如 .html,.tfl文件 | | | | |—— application.properties #SpringBoot核心配置文件 | | |—— test #专门用于测试的代码 | | | |—— java | | |—— |—— |—— learn.boot.BootApplicationTests | |—— target | |—— pom.xml ``` <br/> **3. 默认的`pom.xml`内容** ```xml <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <!-- 用来控制 SpringBoot 的版本 --> <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>3.1.0</version> <relativePath/> <!-- lookup parent from repository --> </parent> <groupId>accu.note.record</groupId> <artifactId>learn-boot</artifactId> <version>0.0.1-SNAPSHOT</version> <name>learn-boot</name> <description>learn-boot</description> <properties> <java.version>17</java.version> </properties> <dependencies> <!-- SpringBoot 核心 API --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <!-- SpringBoot 测试 API --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <!-- SpringBoot 打包插件 --> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> </plugin> </plugins> </build> </project> ``` <br/> **4. 启动 SpringBoot 项目** ![](https://img.kancloud.cn/8a/70/8a702d6ebd060f5cb6b537e7098e6be1_2133x551.png) **** 案例代码:https://gitee.com/flymini/codes03/tree/master/learn-boot