1、打开idea,新建spring Initializr
2、新建controller包、restController类
3、在restController类编写代码
package com.example.restcontroller.controller;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
/**
* 这是注解,和注释不同,注解是引入资源的一种方式
* 如果只是使用@RestController注解Controller,
* 则Controller中的方法无法返回jsp页面,或者html,
* 配置的视图解析器 InternalResourceViewResolver不起作用,
* 返回的内容就是Return 里的内容。
* 例如:本来应该到success.jsp页面的,则其显示success.
*/
public class restController {
@GetMapping("/hi")
@RequestMapping("/hi")
public String hi(){
return "Hello World";
}
}
这里对这几个注解进行一个解释
(1)@RestController
简单理解:@RestController注解相当于@ResponseBody + @Controller合在一起的作用。
使用@RestController不用写对应的jsp文件,直接在浏览器页面返回对应的字符串,如本案例中的“Hello World”
(2)@GetMapping
用于将 HTTP GET请求映射到特定处理程序方法的注释。具体来说,@GetMapping是一个作为快捷方式的组合注释。 @RequestMapping( method = {RequestMethod.GET}
(3)@RequestMapping
一般情况下都是用@RequestMapping(method = RequestMethod),因为@RequestMapping可以直接替代@GetMapping。
但是@GetMapping不能替代@RequestMapping,@RequestMapping相当于@GetMapping的父类!
如果要同时使用@RequestMapping和@GetMapping,映射路径必须一致。
(4)运行程序