Spring Boot 学习——Controller的使用

本文主要记录几个注释的使用方法。

       1. @Controller : 处理http请求

       2. @RequestMapping : 配置URL映射

       3. @RestController : 组合注解,spring 4之后新加的注解,相当于@Controller和@ResponseBody配合使用

       4. @PathVariable : 获取URL中的数据

       5. @RequestParam : 获取请求的参数的值

       6. @GetMapping/@PostMapping : 组合注解

 

       使用方法:

       1. @Controller

              需要与模板配合使用。

              pom.xml 中添加模板依赖,代码如下:

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>

              在resources下创建文件夹templates,在templates下创建index.html,index.html内容随便写。

              编辑Java类,代码如下:

@Controller
public class HelloController {
    @RequestMapping(value="/say", method=RequestMethod.GET)
    public String sayHello(@PathVariable("id") int myId){
        return "index";
    }
}

              在浏览器中访问http://127.0.0.1:8080/say即可看到index.html页面内容

       2. @RequestMapping

              上面代码已经使用了该注解。

       3. @RestController

              组合注解,相当于@Controller和@ResponseBody配合使用

       4. @PathVariable

              获取URL中的数据,代码如下:

@RestController
public class HelloController {
  @RequestMapping(value="/say/{id}",method=RequestMethod.GET)
    public String sayHello(@PathVariable("id") int myId){
        return  "myId is " + myId;
    }
}

              在浏览器中访问http://127.0.0.1:8080/say/111即可查看结果

       5. @RequestParam

              获取请求的参数的值,代码如下:

@RestController
public class HelloController {
    @RequestMapping(value ="/say", method=RequestMethod.GET)
    public String sayHello( @RequestParam("id") int myId){
        return  "myId is " + myId;
    }
}

              在浏览器中访问http://127.0.0.1:8080/say?id=111即可查看结果

              也可以设置参数的默认值,代码如下:

@RestController
public class HelloController {
    @RequestMapping(value ="/say", method=RequestMethod.GET)
    public String sayHello( @RequestParam( value = "id", required = false, defaultValue = "0") int myId){
        return  "myId is " + myId;
    }
}

              这样可以不传参数id。在浏览器中访问http://127.0.0.1:8080/say即可查看结果

       6. @GetMapping/@PostMapping

              组合注解

              @GetMapping(value = "/say") 相当于 @RequestMapping(value = "/say", method = RequestMethod.GET)

              @PostMapping(value = "/say") 相当于 @RequestMapping(value = "/say", method = RequestMethod.POST)

              除此之外,还有组合注解@PutMapping、@DeleteMapping等等。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值