1. 程式人生 > >ssm整合-錯誤3

ssm整合-錯誤3

檢查 ID ble ssm整合 variable restfu framework SM form

1、警告: Unknown version string [3.1]. Default version will be used.

因為Tomcat版本為7,支持3.1版本的為Tomcat 8;

2、Required Integer parameter ‘id‘ is not present

在controller的方法中接收參數需要使用註解 @PathVariable

3、在RESTful約束下,對於頁面的post請求沒有轉化成deleteMapping請求

1 警告: No mapping found for HTTP request with URI [/management/fonts/glyphicons-halflings-regular.woff] in DispatcherServlet with name ‘dispatcherServlet‘
2
5月 25, 2018 11:17:16 下午 org.springframework.web.servlet.PageNotFound noHandlerFound 3 警告: No mapping found for HTTP request with URI [/management/fonts/glyphicons-halflings-regular.ttf] in DispatcherServlet with name ‘dispatcherServlet‘ 4 5月 25, 2018 11:17:18 下午 org.springframework.web.servlet.PageNotFound handleHttpRequestMethodNotSupported
5 警告: Request method ‘POST‘ not supported

原因是web頁面無法接收delete請求,如果需要接收delete請求,則需要在form表單提交時添加隱藏條件

1 <input type="hidden" name="_method" value="DELETE"/>

如果請求的方法一樣,但是還是同樣報這樣的錯誤,應該就是請求的地址出了問題,需要檢查地址信息是否出錯

ssm整合-錯誤3