HTML form表单中action的正确写法

  我的Java Web Application的context是myweb,即http://localhost:8080/myweb/index.jsp是欢迎页。

  现在我的一个Controller的映射为@RequestMapping("/fileUp")。

  如果页面的form中的action=“/fileUp”,转向的URL为http://localhost:8080/fileUp,是无效的。

  以下是有效的写法,会转向“http://localhost:8080/myweb/fileUp”:

  • action="/myweb/fileUp"
  • action="./fileUp"
  • action="fileUp"
原文地址:https://www.cnblogs.com/bigbigbigo/p/10156565.html