创建项目
用 spring tool suite 创建一个 spring starter project :
(笔者使用的 STS 版本为 4-4.0.1.RELEASE)
依赖包中选择 web 及JPA
pom.xml 额外增加 mysql 相关依赖,最终的 pom.xml 依赖:
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>s