from 表单提交 跳不到后台方法页面

![图片说明图片说明

后台controller接收路径
@RequestMapping(value="/upload/uploadImage",method=RequestMethod.POST)
public String uploadImage(@RequestParam MultipartFile textFile) throws IOException{

action的问题嘛,像是路径问题

第一:form not from
第二:报错是路径不对,通过问题找解决问题的方法

把路径打印出来看看是不是你的预期路径吧,然后再试试直接访问路径,看一下能不能访问到

这是路径错误。
就是你的路径写错了,你再看看属性 action 的参数 action 没错的话
该 jsp 对应的后台 servlet 你看看里面的路径写错没,
servlet 有两个方法:(作用是一样的,有一定区别)

request.getRequestDispatcher("/index.jsp").forward(request,response);
response.sendRedirect("/test/index.jsp");

一个路径就写 /index.jsp
下面的方法就要写完整 工程名加上 jsp 名 /test/index.jsp