spring @RequestBody的使用

@RequestMapping(value="/testJson",produces="application/json")
	public String testJson(@RequestBody AccountTest test){
		System.out.println(test.getUsername());
		return "index";
	}

研究了下这个的使用:

如果http请求body传的是json的话就得使用他来接受了,可以直接用String参数来接受,在方法体内自己进行转换,也可以直接让spring进行转换参数直接设置为bean。但是如果参数直接是bean的话,得加入jackson的包

你可能感兴趣的:(spring @RequestBody的使用)