本博文和你一起使用SpringBoot和Maven快速搭建RESTful web Service。笔者当前IDE是idea。
1. 创建项目
在Idea
中创建新的maven
项目,在maven tab
下选择maven-archetype-quickstart
模板。
输入Maven
项目的坐标值,并选择存储路径。
2. 完善目录结构
通过Maven
模板生成的项目目录通常是不完整的,缺少resources
目录。我们手动添加两个目录,并分别标记为资源文件。
3. pom.xml文件配置
Maven
是非常优秀的jar
管理工具,通过pom.xml
引入依赖、插件,统一管理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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.ac</groupId>
<artifactId>Demo</artifactId>
<version>1.0-SNAPSHOT</version>
<name>Demo</name>
<!-- FIXME change it to the project's website -->
<url>http://www.example.com</url>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.1.6.RELEASE</version>
</parent