springmvcと@PathVariableとencodingfilter

spring mvcで送信する際に、POSTにしないと文字化けします。
以下の3つをチェックすること

  • jsp
  • web.xmlのencodingfilter
  • Controllerの@PathVariable

< form action="/project/${project.id }/comment/done" method="post" >


encodingFilter
org.springframework.web.filter.CharacterEncodingFilter

encoding
UTF-8


forceEncoding
true



encodingFilter
/*

public ModelAndView drawProjectCommentDone(CommentForm commentForm,@PathVariable("projectId") long projectId){