阿里云-云小站(无限量代金券发放中)
【腾讯云】云服务器、云数据库、COS、CDN、短信等热卖云产品特惠抢购

创建Spring Boot应用

167次阅读
没有评论

共计 2514 个字符,预计需要花费 7 分钟才能阅读完成。

1、使用 Spring Initializr 创建 Spring Boot 应用

1.1、点击 Create New Project

创建 Spring Boot 应用

1.2、选中 Spring Initializr

创建 Spring Boot 应用

1.3、填写 Project Metadata

创建 Spring Boot 应用

1.4、选择项目依赖

创建 Spring Boot 应用

1.5、创建完成

创建 Spring Boot 应用

2、目录结构

创建 Spring Boot 应用

2.1、Maven Wrapper 文件

Maven Wrapper 文件包括.mvn 目录、执行 mvnw 和 mvnw.cmd, 这些文件均源于 GitHub 工程。

2.2、FirstSpringbootApplication 文件

// 此类是 Spring Boot 应用的启动类 @SpringBootApplication public class FirstSpringbootApplication {public static void main(String[] args) {SpringApplication.run(FirstSpringbootApplication.class, args); } }

2.3、application.properties 文件

application.properties 是 Spring Boot 默认的应用外部配置文件, 其配置属性可以控制 Spring Boot 应用的行为,如调整 Web 服务端口等。

2.4、Spring Boot 应用 JUnit 测试文件

在 test 目录下有一个 FirstSpringbootApplicationTests.java 文件, 代码如下:

@SpringBootTest class FirstSpringbootApplicationTests {@Test void contextLoads() {}}

此文件为 Spring Boot 应用的 JUnit 测试文件, 与其引导 的 Java 文件对应。

2.5、.gitignore 文件

内容如下:

HELP.md
target/
!.mvn/wrapper/maven-wrapper.jar
!**/src/main/**
!**/src/test/**

### 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/

### VS Code ###
.vscode/

它定义了最常见的文件或目录的版本控制忽略名单, 包括基于 Eclipse 的 STS、IDEA 和 NetBeans 等项目元信息资源

2.6、mvnw 和 mvnw.cmd

mvnw 或 mvnw.cmd 脚本相当于 mvn 命令。引导 .mvn/wrapper/maven-wrapper.jar 下载 Maven 二进制文件,前者用于 *nix 平台, 后者工作于 Windows 操作系统。

2.7、pom.xml 文件

此文件是 Spring Boot 应用的 jar 包依赖文件,内容如下:

<?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> <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.2.6.RELEASE</version> <relativePath/> <!-- lookup parent from repository --> </parent> <groupId>com.tyschool</groupId> <artifactId>first-springboot</artifactId> <version>0.0.1-SNAPSHOT</version> <name>first-springboot</name> <description>Demo project for Spring Boot</description> <properties> <java.version>1.9</java.version> </properties> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> <exclusions> <exclusion> <groupId>org.junit.vintage</groupId> <artifactId>junit-vintage-engine</artifactId> </exclusion> </exclusions> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> </plugin> </plugins> </build> </project>

正文完
星哥玩云-微信公众号
post-qrcode
 0
星锅
版权声明:本站原创文章,由 星锅 于2022-06-06发表,共计2514字。
转载说明:除特殊说明外本站文章皆由CC-4.0协议发布,转载请注明出处。
【腾讯云】推广者专属福利,新客户无门槛领取总价值高达2860元代金券,每种代金券限量500张,先到先得。
阿里云-最新活动爆款每日限量供应
评论(没有评论)
验证码
【腾讯云】云服务器、云数据库、COS、CDN、短信等云产品特惠热卖中