前言
Redis 配置文件信息中文翻译版,方便大家阅读和理解对应参数信息及配置参数信息
# Redis configuration file example# Note on units: when memory size is needed, it is possible to specify
# it in the usual form of 1k 5GB 4M and so forth:
# 注意:当…
json参数
post请求格式
RestController
public class HelloController { //json参数 post 请求RequestMapping("/jsonParam")public String jsonParam(RequestBody User user){System.out.println(user);return "OK";}
} postman 接口测试工具…