0
我可以在請求類型爲POST的情況下在@RequestMapping中使用正則表達式嗎?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