我尝试通过以下方式从 http 表单提交一些信息:
<form method="GET" action="/springhibernate/notes/addComment">
<textarea rows="10" cols="30" name="content" placeholder="type comment here"></textarea>
<input type="hidden" name="note.id" value=<c:out value="${note.id}"/>/>
<input type="submit" class="button" value="send comment"/>
</form>
Spring 框架将此提交请求映射到控制器
@RequestMapping(value = "notes/addComment", method = RequestMethod.GET)
public String addComment(@RequestParam("content") String content, @RequestParam("note.id") String parent_id, ModelMap model) throws UnsupportedEncodingException {
Long note_id = notesService.addComment(content, Long.valueOf(parent_id));
return "redirect:viewNote/" + parent_id;
}
结果我有: ?°?±???????µ 在内容变量中。
仅非拉丁字符会出现问题。
JSP 页面包含:<%@ page contentType="text/html;charset=WINDOWS-1251" language="java" %>