请求响应里面的日期参数

日期参数

需要在控制类使用@DateTimeFormat注解

复制代码
package com.ming.controller;
​
​
import org.springframework.format.annotation.DateTimeFormat;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import java.time.LocalDateTime;
​
​
@RestController
public class Requsetcontroller {
​
    @RequestMapping("/dataParam")
    public String dataParam(@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")LocalDateTime updateTime){
        System.out.println(updateTime);
        return "OK";
    }
​
​
​
}
​

在postman中使用get请求 返回ok

在idea中我们可以看见返回的数据

注意 @DateTimeFormat中的pattern 必须使用yyyy-MM-dd HH:mm:ss 否则会报错

接受json格式的参数

json格式的数据要放在请求体当中的

json中所有的数据都要用双引号

json数据的键名与形参对象属性名相同,定义POJO类型形参即可接收参数,需要使用@RequestBody

@RequestBody这个注解将json格式的数据封装到实体对象当中

其中的user类

复制代码
package com.ming.pojo;
​
public class User {
    private String name;
    private int age;
    private Address address;
    public String getName() {
        return name;
    }
​
    public void setName(String name) {
        this.name = name;
    }
​
    public int getAge() {
        return age;
    }
​
    public void setAge(int age) {
        this.age = age;
    }
​
    public Address getAddress() {
        return address;
    }
​
    public void setAddress(Address address) {
        this.address = address;
    }
​
    @Override
    public String toString() {
        return "User{" +
                "name='" + name + '\'' +
                ", age=" + age +
                ", address=" + address +
                '}';
    }
}
​

其中的address类

复制代码
package com.ming.pojo;
​
public class Address {
    private String province;
    private String city;
​
    public String getProvince() {
        return province;
    }
​
    public void setProvince(String province) {
        this.province = province;
    }
​
    public String getCity() {
        return city;
    }
​
    public void setCity(String city) {
        this.city = city;
    }
​
    @Override
    public String toString() {
        return "Address{" +
                "province='" + province + '\'' +
                ", city='" + city + '\'' +
                '}';
    }
}
​

然后是请求类

复制代码
package com.ming.controller;
​
​
import com.ming.pojo.User;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
​
​
​
@RestController
public class Requsetcontroller {
​
    @RequestMapping("/jsonParam")
    public String jsonParam(@RequestBody User user){
        System.out.println(user);
        return "OK";
    }
​
​
​
}
​

运行以后在postman 将测试的json格式数据写到body里面的raw里面

在idea控制台我们可以看见数据

路径参数

路径参数:通过请求URL直接传递参数,使用{...}来标识,需要使用@PathVariable获取路径

复制代码
package com.ming.controller;
​
​
import com.ming.pojo.User;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
​
​
​
@RestController
public class Requsetcontroller {
 @RequestMapping("/path/{id}")
​
  public String PathParam(@PathVariable Integer id){
     System.out.println(id);
     return "OK";
 }
​
​
}
​

在postman中设置路径

然后路径id被打印到了Java控制台

那么如何传递多个参数呢?

我们在方法中加入多个变量即可并且在注解中加入该变量 例如 /path/{id}/{name}

注意 每一个方法变量前面都需要添加@PathVariable

复制代码
package com.ming.controller;
​
​
import com.ming.pojo.User;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
​
​
​
@RestController
public class Requsetcontroller {
 @RequestMapping("/path/{id}")
​
  public String PathParam(@PathVariable Integer id){
     System.out.println(id);
     return "OK";
 }
    @RequestMapping("/path/{id}/{name}")
    public String PathParam(@PathVariable Integer id,@PathVariable String name){
        System.out.println(id+":"+name);
        return "OK";
    }
​
}
​

在get请求中输入 http://localhost:8080/path/1/张三

在Java控制台中的结果为

相关推荐
大大怪将军~~~~18 分钟前
SpringBoot 入门
java·spring boot·后端
凡人的AI工具箱34 分钟前
每天40分玩转Django:Django缓存
数据库·人工智能·后端·python·缓存·django
安然望川海37 分钟前
springboot 使用注解设置缓存时效
spring boot·后端·缓存
计算机学长felix1 小时前
基于SpringBoot的“在线BLOG网”的设计与实现(源码+数据库+文档+PPT)
spring boot·毕业设计
Hello.Reader1 小时前
GraphQL 全景攻略:从基础概念到生产落地的技术指南
后端·graphql
溟洵1 小时前
【C++】异步(并发)实现 线程池 ---附源码+实现步骤(future、async、promise、package_task、任务池原理和框架)
服务器·网络·c++·分布式·后端
小林想被监督学习2 小时前
Spring Boot 整合 RabbitMQ(在Spring项目中使用RabbitMQ)
spring boot·spring·java-rabbitmq
小李不想输啦5 小时前
什么是微服务、微服务如何实现Eureka,网关是什么,nacos是什么
java·spring boot·微服务·eureka·架构
HaiFan.10 小时前
SpringBoot 事务
java·数据库·spring boot·sql·mysql
2401_8827275710 小时前
低代码配置式组态软件-BY组态
前端·后端·物联网·低代码·前端框架