硬性要求:
- JDK1.6+
弹性需求:
- Maven3.2
老实说,也没安装这回事,spring-boot是一个复合框架,就跟普通的其它框架一样,在开发项目的时候倒入jar包就好了。所以,这里推荐使用maven项目管理工具,把依赖写入POM文件就可以了,如下。
<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.example</groupId>
<artifactId>myproject</artifactId>
<version>0.0.1-SNAPSHOT</version>
<!-- Inherit defaults from Spring Boot -->
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.3.3.RELEASE</version>
</parent>
<!-- Add typical dependencies for a web application -->
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
</dependencies>
<!-- Package as an executable jar -->
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>
当然,如果你喜欢,也可以使用Gradle构建你的项目。
值得一提的是Spring-Boot-CLI,这是一个辅助工具,你可以通过它快速生成一个基于maven的spring-boot项目,方便你快速入门。
这里介绍Mac OS用户使用Homebrew安装Spring-Boot-CLI的方法:
$ brew install springboot
到目前为止,准备工作完毕。