Bootstrap

使用SpringBoot和Maven快速搭建RESTful web服务

本博文和你一起使用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
;