目录
二 SpringBoot入门案例
第一步:
解压一个maven3.5到本地
第二步:
修改maven的conf\setting的本地仓库存储路径
第三步:
修改maven的conf\setting 中远程仓库为阿里云的
第四步:
把Eclipse中的本地和全局的仓库文件都改成conf\setting
第五步:
使用Eclipse创建一个 maven war项目(test1)
使用Eclipse创建一个 maven jar项目(test2)
这两种都可以,但一般都使用jar,因为spring是用于服务,不建议与jsp使用
第六步:
在pom.xml添加spring-boot-starter-web依赖,如图
<parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>1.5.9.RELEASE</version> </parent> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> </dependencies> |
spring-boot-starter-parent作用 在pom.xml中引入spring-boot-start-parent,它可以提供dependency management,也就是说依赖管理,引入以后在申明其它dependency的时候就不需要version了,后面可以看到。
spring-boot-starter-web作用 springweb 核心组件 |
第七步:
写一个控制器如下,然后写一个main方法,把程序跑起来:
package com.gyf.web.controller;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.bind.annotation.RestController;
@RestController//相当于声明Controller - 提共restful 风格
@EnableAutoConfiguration//自动配置,不需要写spring的配置文件
class HelloController {
@RequestMapping("/hello")//映射路径
@ResponseBody//响应体
public String hello() {
return "Hello World";
}
public static void main(String[] args) {
//启动程序
SpringApplication.run(HelloController.class, args);
}
}
第八步:
在浏览器中访问http://localhost:8080/hello
注:Maven项目上总有一个小红叉
解决决思路:
1、查看problems选项卡,里面有对问题的描述
2、工程右键->maven->update project(勾选Force Update)