好吧,简单的问题出在您的表单操作上,您
action="/classLevel"应该将其归为
action="/classLevel/spring"原因是因为您的方法具有
/springRequestMapping,所以请更改:
<form action="/classLevel" method="get">
至 :
<form action="/classLevel/spring" method="get">
因为和url测试一样,方法调用应该是:
/classLevel/spring。
请参阅 Spring Docs的
使用@RequestMapping映射请求 一节以获取更多信息。 __



