SpringBoot简单入门
程序员文章站
2022-05-03 12:56:03
...
快速入门
1.新建一个maven项目,类型为jar工程项目
2.在pom.xml引入依赖
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.3.3.RELEASE</version>
</parent>
<dependencies>
<!-- SpringBoot web 组件 -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
</dependencies>
spring-boot-starter-parent作用:
在pom.xml中引入spring-boot-starter-parent,它可以提供dependency,management,也就是说依赖管理,引入以后再申明其它dependency的时候就不需要version了。
spring-boot-starter-web作用:
spring-boot-starter-web默认使用嵌套式的Tomcat作为Web容器对外提供HTTP服务,默认端口8080对外监听和提供服务。
3.编写HelloWorld工程
package com.fanzerun.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.RestController;
@RestController
@EnableAutoConfiguration
public class HelloController {
@RequestMapping("/hello")
public String index(){
return "Hello World";
}
public static void main(String[] args) {
SpringApplication.run(HelloController.class,args); //标识为启动类
}
}
@RestController
@RestController这个注解相当于@Controller和@ResponseBody的一个组合,当我们使用@RestController注解定义一个类的时候,这个类中方法传递给前端的数据会自动转换为json类型。这里需要注意@RestController只是标识类传递给前端的数据类型为json,而类中的方法如果想接受前端的数据还是需要在对应的方法参数中添加@RequestBody注解。 这里一定要记住的是@aaa@qq.comaaa@qq.com,不包括@RequestBody注解,如果我们想要获取前端传递过来的json数据不管使用@RestController还是@Controller注解都要在类的方法中加上@RequestBody注解。
@EnableAutoConfiguration
让SpringBoot根据应用所声明的依赖来对Spring框架进行自动配置
4.启动工程
右击HelloController,Run as --->Java Application
5.查看运行结果
在浏览器上输入 http://localhost:8080/hello