当前位置:   article > 正文

springBoot 入门(三)—— 使用 RestController_springbootrestcontroller

springbootrestcontroller

一.常用注解说明

  • @Controller 处理http请求
  • @RestController Spring框架4版本之后出来的注解,之前版本返回json数据需要@ResponseBody配合@Controller
  • @RequestMapping 配置url映射关系
  • @PathVariable 获取url中的数据
  • @RequestParam 获取请求参数的值
  • @GetMapping 组合注解

二.@RestController 使用

package HelloWord;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RestController;

@RestControl
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/菜鸟追梦旅行/article/detail/580084
推荐阅读
相关标签
  

闽ICP备14008679号