标签:count mode message oca resource trim return 注解 XML
作用:
i) 该注解用于读取Request请求的body部分数据,使用系统默认配置的HttpMessageConverter进行解析,然后把相应的数据绑定到要返回的对象上;
ii) 再把HttpMessageConverter返回的对象数据绑定到 controller中方法的参数上。
使用时机:
A) GET、POST方式提时, 根据request header Content-Type的值来判断:
B) PUT方式提交时, 根据request header Content-Type的值来判断:
说明:request的body部分的数据编码格式由header部分的Content-Type指定;
作用:
该注解用于将Controller的方法返回的对象,通过适当的HttpMessageConverter转换为指定格式后,写入到Response对象的body数据区。
使用时机:
返回的数据不是html标签的页面,而是其他某种格式的数据时(如json、xml等)使用;
controller层对应栗子:
@Controller @RequestMapping("system/user") public class UserCntroller { @Resource(name="UserService") private UserService userService; @RequestMapping(value = "login" , method = RequestMethod.POST) @ResponseBody public int login(HttpServletRequest request,String account,String password){ boolean loginResult; account = account.trim(); password = password.trim(); int flag =userService.login(account,password); if(flag == 1){ System.out.println("sss"); return 1; }else{ return 0; } } }
js对应栗子:
$.ajax({ type:"POST", url:"system/user/login.do", data:‘account=‘+account+‘&password=‘+password, dataType:"json", async:true, success:function(data){ if(data==1){ location.href="index.html"; } if(data==0){ alert("输入信息有误!!!"); } },
标签:count mode message oca resource trim return 注解 XML
原文地址:http://www.cnblogs.com/cjxblogs/p/7151939.html