使用正则表达式的Spring @RequestMapping不适用于POST?

时间:2013-11-29 01:27:10

标签: regex spring

我可以在@RequestMapping中使用正则表达式,请求类型是POST吗?

我试过了:

 @RequestMapping( value = "/index/{prePath:^tutor$|^admin$}", method = RequestMethod.POST )

用我的表格

<form:form action="../index/admin.do" method="POST" modelAttribute="mod">

但消息是WARNING: Request method 'POST' not supported

1 个答案:

答案 0 :(得分:0)

我发现答案用{prePath:^tutor.do$|^admin.do$}替换正则表达式似乎也需要扩展名。

另一个控制器工作正常但没有.do扩展名