1.问题描述 如下所示: The request sent by the client was syntactically incorrect 这个是我使用springmvc进行表单处理练习时遇到的。 2.问题解决办法 The request sent by the client was syntactically incorrect说的意思是:由客户端发送的请求是语法上是不正确的。前端jsp页面的控件名称(name)和controller中接收的参数名称不一致,比如该用int时,你提交的是String. 3.参考网址 https://www.cnblogs.com/xym4869/p/8494981.html