标签:out code col for action response span date() ring
@ResponseBody
@RequestMapping("/testHttpMessageConverter")
public String testHttpMessageConverter(@RequestBody String body){
System.out.println(body);
return "helloworld! " + new Date();
}
<form action="testHttpMessageConverter" method="POST" enctype="multipart/form-data">
File: <input type="file" name="file"/>
Desc: <input type="text" name="desc"/>
<input type="submit" value="Submit"/>
</form>
httpmessageconverter requestbody responsebody
标签:out code col for action response span date() ring
原文地址:https://www.cnblogs.com/znsongshu/p/10090196.html