SpringBoot接受参数形式
1.@RequestBody用来接收传递给后端的json字符串中的数据。
请注意这里的数据必须是放在httpBody里面的json格式数据
@RequestMapping("list")
public String getList(@RequestBody User test){
return "测试号==" + test.getPhone();
}
-
post请求form-data方式---失败
-
post请求x-www-form-urllencoded---失败
-
post请求raw格式---成功
总结::
- form-data和x-www-form-urlencoded 时,当你也设置了Header的Content-type为application-json的时候,也是无用的,请求的格式还是以form-data和x-www-form-urlencoded对应的为准。
-
form-data和x-www-form-urlencoded提交数据时,并不是以json格式提交的。
-
raw方式并且内容格式为application/json时
如果修改了这里@RequestBody String phone。上面的User对象里面有phone属性
@RequestMapping("list")
public String getList(@RequestBody String phone){
// return "测试号==" + test.getPhone();
return "测试号==" + phone;
}
返回的数据就成这样了
2.@RequestParam用来接收传递给后端的将请求参数绑定到你控制器的方法参数上
@RequestParam 有三个属性:
(1)value:请求参数名(必须配置)
@RequestParam("") 或 @RequestParam(value="")
(2)required:是否必需,默认为 true,即 请求中必须包含该参数,如果没有包含,将会抛出异常(可选配置)
@RequestParam(required=true)
(3)defaultValue:默认值,如果设置了该值,required 将自动设为 false,无论你是否配置了required,配置了什么值,都是 false(可选配置)
@RequestParam(defaultValue="")
你也可以联合配置
@RequestParam(value="", required=true, defaultValue="")
@RequestMapping(value="/user/show",params="userId")
注意的是:如果方法上的@RequestMapping 配置了 params 属性,则请求中也必须包含该参数
@RequestMapping("list")
public String getList(@RequestParam String phone){
// return "测试号==" + test.getPhone();
return "测试号==" + phone;
}
3.如果是这样(GET和POST效果相同)
@RequestMapping("list")
public String getList(String phone){
// return "测试号==" + test.getPhone();
return "测试号==" + phone;
}
可以接受这些请求过来的数据
4 遇见一个奇葩的问题 Nginx
- 配置Nginx的时候,我把80服务和443服务,放到一个server里面了。我在请求https的时候可以正常使用,但是使用http去请求就不行了,get请求没问题,post请求返回HttpRequestMethodNot支持。
-- 错误的Nginx配置如下
server {
listen 80;
listen 443 ssl;
server_name www.aismartlink.com;
ssl_protocols TLSv1.2 TLSv1.1 TLSv1;
ssl_certificate /etc/ssl/www.aismartlink.com.crt;
ssl_certificate_key /etc/ssl/www.aismartlink.com.key;
ssl_prefer_server_ciphers on;
#自动跳转到HTTPS (可选)
if ($server_port = 80) {
rewrite ^(.*)$ https://$host$1 permanent;
}
location / {
proxy_pass http://127.0.0.1:9011;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header REMOTE-HOST $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
client_max_body_size 5000M;
}
# 输入https://www.aismartlink.com/resources 会去访问服务器的/apps/resources/ 如果指定了特定文件则会加载这个文件
location /resources/ {
root /apps/;
autoindex on;
}
charset utf-8;
}
-- 正确的配置如下,80服务和443服务分开配置
server {
listen 443 ssl;
server_name www.aismartlink.com;
ssl_protocols TLSv1.2 TLSv1.1 TLSv1;
ssl_certificate /etc/ssl/www.aismartlink.com.crt;
ssl_certificate_key /etc/ssl/www.aismartlink.com.key;
ssl_prefer_server_ciphers on;
#自动跳转到HTTPS (可选)
if ($server_port = 80) {
rewrite ^(.*)$ https://$host$1 permanent;
}
location / {
proxy_pass http://127.0.0.1:9011;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header REMOTE-HOST $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
client_max_body_size 5000M;
}
# 输入https://www.aismartlink.com/resources 会去访问服务器的/apps/resources/ 如果指定了特定文件则会加载这个文件
location /resources/ {
root /apps/;
autoindex on;
}
charset utf-8;
}
server {
listen 80;
server_name www.aismartlink.com;
location / {
proxy_pass http://127.0.0.1:9011;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header REMOTE-HOST $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
client_max_body_size 5000M;
}
# 输入https://www.aismartlink.com/resources 会去访问服务器的/apps/resources/ 如果指定了特定文件则会加载这个文件
location /resources/ {
root /apps/;
autoindex on;
}
charset utf-8;
}