业无高卑志当坚,男儿有求安得闲?这篇文章主要讲述浅谈@RequestMapping @ResponseBody 和 @RequestBody 注解的用法与区别相关的知识,希望能为你提供帮助。
[email
protected]【浅谈@RequestMapping @ResponseBody 和 @RequestBody 注解的用法与区别】国际惯例先介绍什么是@RequestMapping,@RequestMapping 是一个用来处理请求地址映射的注解,可用于类或方法上。用于类上,表示类中的所有响应请求的方法都是以该地址作为父路径;用于方法上,表示在类的父路径下追加方法上注解中的地址将会访问到该方法,此处需注意@RequestMapping用在类上可以没用,但是用在方法上必须有。
例如:
@Controller
//设置想要跳转的父路径
@RequestMapping(value = "https://www.songbingjia.com/Controllers")
public class StatisticUserCtrl {
//如需注入,则写入需要注入的类
//@Autowired// 设置方法下的子路经
@RequestMapping(value = "https://www.songbingjia.com/method")
public String helloworld() {return "helloWorld";
}
}
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
说到这了,顺便说一下 @PathVariable 注解,其用来获取请求路径(url )中的动态参数。
页面发出请求:
function login() {
var url = "${pageContext.request.contextPath}/person/login/";
var query = $(‘#id‘).val() + ‘/‘ + $(‘#name‘).val() + ‘/‘ + $(‘#status‘).val();
url += query;
$.get(url, function(data) {
alert("id: " + data.id + "name: " + data.name + "status: "
+ data.status);
});
}
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
/**
* @RequestMapping(value = "https://www.songbingjia.com/android/user/login/{id}/{name}/{status}") 中的 {id}/{name}/{status}
* 与 @PathVariable int id、@PathVariable String name、@PathVariable boolean status
* 一一对应,按名匹配。
*/@RequestMapping(value = "https://www.songbingjia.com/android/user/login/{id}/{name}/{status}")
@ResponseBody
//@PathVariable注解下的数据类型均可用
public User login(@PathVariable int id, @PathVariable String name, @PathVariable boolean status) {
//返回一个User对象响应ajax的请求
return new User(id, name, status);
}
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
作用:
该注解用于将Controller的方法返回的对象,通过适当的HttpMessageConverter转换为指定格式后,写入到Response对象的body数据区。
使用时机:
返回的数据不是html标签的页面,而是其他某种格式的数据时(如json、xml等)使用;
当页面发出异步请求:
function login() {
var datas = ‘{"username":"‘ + $(‘#username‘).val() + ‘","userid":"‘ + $(‘#userid‘).val() + ‘","status":"‘ + $(‘#status‘).val() + ‘"}‘;
$.ajax({
type : ‘POST‘,
contentType : ‘application/json‘,
url : "${pageContext.request.contextPath}/user/login",
processData : false,
dataType : ‘json‘,
data : datas,
success : function(data) {
alert("userid: " + data.userid + "username: " + data.username + "status: "+ data.status);
},
error : function(XMLHttpRequest, textStatus, errorThrown) {
alert("出现异常,异常信息:"+textStatus,"error");
}
});
};
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
@RequestMapping(value = "https://www.songbingjia.com/android/user/login")
@ResponseBody
// 将ajax(datas)发出的请求写入 User 对象中,返回json对象响应回去
public User login(User user) {
User user = new User();
user .setUserid(1);
user .setUsername("MrF");
user .setStatus("1");
return user ;
}
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
@RequestBody@RequestBody 注解则是将 HTTP 请求正文插入方法中,使用适合的 HttpMessageConverter 将请求体写入某个对象。
作用:
1) 该注解用于读取Request请求的body部分数据,使用系统默认配置的HttpMessageConverter进行解析,然后把相应的数据绑定到要返回的对象上;使用时机:
2) 再把HttpMessageConverter返回的对象数据绑定到 controller中方法的参数上。
A) GET、POST方式提时, 根据request header Content-Type的值来判断:
application/x-www-form-urlencoded, 可选(即非必须,因为这种情况的数据@RequestParam, @ModelAttribute也可以处理,当然@RequestBody也能处理);B) PUT方式提交时, 根据request header Content-Type的值来判断:
multipart/form-data, 不能处理(即使用@RequestBody不能处理这种格式的数据);
其他格式, 必须(其他格式包括application/json, application/xml等。这些格式的数据,必须使用@RequestBody来处理);
application/x-www-form-urlencoded, 必须;multipart/form-data, 不能处理;其他格式, 必须;说明:request的body部分的数据编码格式由header部分的Content-Type指定;
例如:
@RequestMapping(value = "https://www.songbingjia.com/android/user/login")
@ResponseBody
// 将ajax(datas)发出的请求写入 User 对象中
public User login(@RequestBody User user) {
// 这样就不会再被解析为跳转路径,而是直接将user对象写入 HTTP 响应正文中
return user;
}
推荐阅读
- android虚拟机的垃圾收集
- cannot access android.support.v4.app.BaseFragmentActivityJB的解决
- Showing All Messages : error: open /Users/apple/Library/Developer/Xcode/DerivedData/PDoctor-dkhmpttm
- 转:关于java.lang.ClassNotFoundException: org.springframework.boot.SpringApplication的解决
- android onKeyDown
- Android Stuido启动提示"No JVM installation found.Please install a 32-bit JDK...."
- 记https在Android浏览器无法访问
- 大眼睛拉卡拉手机刷卡器怎样用?大眼睛拉卡拉运用图文详细教程
- 拉卡拉还款手续费资费规范介绍