**
SpringBoot入门案例
**
Step01:
安装好maven,并且配置好本地仓库路径和远程中央仓库的路径。
Step2:
创建一个 maven war项目(test1)
创建一个 maven jar项目(test2)
这两种都可以,但一般都使用jar,因为spring是用于服务,不建议与jsp使用
Step03:
在pom.xml添加spring-boot-starter-web依赖,如下代码:
<?xml version="1.0" encoding="UTF-8"?>
<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.ykd</groupId>
<artifactId>springboot-test2</artifactId>
<version>1.0-SNAPSHOT</version>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.7</maven.compiler.source>
<maven.compiler.target>1.7</maven.compiler.target>
</properties>
<!-- SpringBoot 父依赖 -->
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.5.9.RELEASE</version>
</parent>
<dependencies>
<!-- SpringBoot 配置web的依赖 -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
</dependencies>
</project>
spring-boot-starter-parent作用
在pom.xml中引入spring-boot-start-parent,它可以提供dependency management,也就是说依赖管理,引入以后在申明其它dependency的时候就不需要version了,后面可以看到。
spring-boot-starter-web作用
springweb 核心组件
Step04:
写一个控制器如下,然后写一个main方法,把程序跑起来:
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.bind.annotation.RestController;
@RestController //声明Rest风格的控制器
@EnableAutoConfiguration //自动配置,相当于写了spring的配置文件
public class HelloController {
@RequestMapping("hello/{name}")
@ResponseBody
public String hello(@PathVariable("name") String name){
return name+"Hello,Spring Boot";
}
public static void main(String[] args) {
//启动SpringBoot的项目
SpringApplication.run(HelloController.class,args);
}
}
Step05:
在浏览器中访问http://localhost:8080/hello
注:Maven项目上总有一个小红叉
解决决思路:
1、查看problems选项卡,里面有对问题的描述
2、工程右键->maven->update project(勾选Force Update)