声明:本文来源于MLDN培训视频的课堂笔记,写在这里只是为了方便查阅。
一、根据官网手工搭建(http://projects.spring.io/spring-boot/#quick-start)
1、新建一个maven工程springbootfirst
2、 如果要想开发 SpringBoot 程序只需要按照官方给出的要求配置一个父 pom (spring-boot-starter-parent)和添加web开发的支持(spring-boot-starter-web)即可。
13 4.0.0 4 5com.study.springboot 6springbootfirst 70.0.1-SNAPSHOT 8jar 9 10springbootfirst 11http://maven.apache.org 12 1314 17 18 19UTF-8 151.8 1620 24 25org.springframework.boot 21spring-boot-starter-parent 221.5.4.RELEASE 2326 27 28 34 35 3629 32 33org.springframework.boot 30spring-boot-starter-web 3137 50 51springbootfirst 3839 4940 48org.apache.maven.plugins 41maven-compiler-plugin 4243 47
3、 编写一个具体的程序SampleController.java
1 package com.study.springboot.springbootfirst; 2 3 import org.springframework.boot.*; 4 import org.springframework.boot.autoconfigure.*; 5 import org.springframework.stereotype.*; 6 import org.springframework.web.bind.annotation.*; 7 8 @Controller 9 @EnableAutoConfiguration10 public class SampleController {11 12 @RequestMapping("/")13 @ResponseBody14 String home() {15 return "Hello World!";16 }17 18 public static void main(String[] args) throws Exception {19 SpringApplication.run(SampleController.class, args);20 }21 }
4.启动SampleController.java,在浏览器输入http://localhost:8080/即可看到我们使用SpringBoot搭建的第一个web程序成功了,就是这么的快速、简单、方便
二、快速搭建
1、访问http://start.spring.io/
2、选择构建工具Maven Project、Spring Boot版本1.5.11以及一些工程基本信息,点击“”java版本选择1.8,可参考下图所示:
3、点击Generate Project下载项目压缩包
4、解压后,使用eclipse,Import -> Existing Maven Projects -> Next ->选择解压后的文件夹-> Finsh,OK done!