我对处理@RequestMapping
.
例如:
通过这个 url http://localhost:8080/SpringExample/admin/personaListForm/1
,我到达了一个由 @RequestMapping 控制的表单:@RequestMapping("/admin/personaListForm/{tipoPersona}")
如您所见,“1”是一个变量。
这是我的表格:<form:form action="personaListFormSent">
如您所见,如果我提交表单,我将被发送到此 url http://localhost:8080/SpringExample/admin/personaListForm/personaListFormSent
(因为“/1”)。问题是我不想去那里,我想去http://localhost:8080/SpringExample/admin/personaListFormSent
我可以通过这种方式解决编辑表单的问题,<form:form action="../personaListFormSent">
但它似乎不是处理这个问题的专业方法,因为如果明天我需要添加更多变量,我将不得不在表单标签中添加更多“../”。
谢谢你