一:搭建
1.环境要求
Java7及以上
Spring Framework4.1.5及以上
2.新建一个maven工程
3.pom.xml(生成)
1 24 4.0.0 5 6com.caojun 7springboot 80.0.1-SNAPSHOT 9jar 10 11springboot 12Demo project for Spring Boot 13 1415 20 21org.springframework.boot 16spring-boot-starter-parent 171.5.8.RELEASE 1819 22 26 27UTF-8 23UTF-8 241.8 2528 39 4029 32 33org.springframework.boot 30spring-boot-starter-web 3134 38org.springframework.boot 35spring-boot-starter-test 36test 3741 48 49 5042 4743 46org.springframework.boot 44spring-boot-maven-plugin 45
4.这个时候会出现一个Maven Dependencies
先maven update一下
二:测试
1.对自带的程序进行启动
2.新建java程序
1 package com.caojun.springboot; 2 3 import org.springframework.web.bind.annotation.RequestMapping; 4 import org.springframework.web.bind.annotation.RequestMethod; 5 import org.springframework.web.bind.annotation.RestController; 6 7 @RestController 8 public class HelloSpringBoot { 9 10 @RequestMapping(value="/hello",method = RequestMethod.GET)11 public String say(){12 return "Hello Spring Boot";13 }14 }
3.重新启动
去页面上观察效果
三:maven库