快速构建Spring Boot 1.5.8 maven Web 项目
Springboot提供了快速构建maven项目的方法,具体可以参考spring boot的官方文档http://docs.spring.io/spring-boot/docs/1.5.8.RELEASE/reference/htmlsingle/
下面我们就一步步从头开始构建我们的Spring Boot maven项目:
1. Spring Initialize
从springboot 官网http://start.spring.io/快速构建我们项目的原始代码. Spring boot 支持Maven Project 和 Gradle Project, 编程语言支持Java, Kotlin 和Groovy, 目前spring boot release 的稳定版本为1.5.8.
本文选用的是Maven project, 开发语言为Java, Spring Boot 版本为1.5.8;填写Project Metadata信息,及项目所依赖的库,一般如果你创建的是Web应用,Web这个库肯定是要选的。如图:
也可以打开Switch to the full version, 配置更详细的project metadata.
点击Generate Project按钮就可以下载配置好的spring boot web 项目源码了,这就是我们的Spring Boot初始代码。
2. 将源码导入IDE/eclipse
更新下载maven依赖库,并编译spring boot项目有两种方法:
- 在windows 控制台下直接运行项目源码里的mvnw.cmd脚本;
- eclipse 右击项目,选择Maven–>Update Project;
编译完成后,我们会发现项目中多了个target目录,这个目录是用来存放编译后的class 文件及我们最终需要生成的执行文件。如下图:
resources是用来放本web项目的资源文件,static文件夹用来存放静态资源文件,如js库,图片,插件等等, templates用来存放html模板等,application.properties用来配置该项目的一些属性及引入的框架配置。
3. 添加Controller代码
打开SpringBootBaseApplication.java, 增加一个Controller映射,
@RequestMapping("/")
String home() {
return "Hello world!";
}
整个文件代码变为:
package tech.onroad.springbootbase;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
@SpringBootApplication
public class SpringBootBaseApplication {
public static void main(String[] args) {
SpringApplication.run(SpringBootBaseApplication.class, args);
}
@RequestMapping("/")
String home() {
return "Hello world!";
}
}
@RestController这个注解用于告诉Spring,当它在处理web request时,SpringBootBaseApplication 这个类是web