Spring Boot学习——Controller的使用

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

       1. @Controller : 处理http请求spring

       2. @RequestMapping : 配置URL映射浏览器

       3. @RestController : 组合注解,spring 4以后新加的注解,至关于@Controller和@ResponseBody配合使用app

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

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

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

 

       使用方法:code

       1. @Controllerxml

              须要与模板配合使用。htm

              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等等。

相关文章
相关标签/搜索