* javax.servlet.http.HttpServletResponse)
*/
@Override
protected void noHandlerFound(HttpServletRequest request, HttpServletResponse response) throws Exception {
String requestUri = new UrlPathHelper().getRequestUri(request);
throw new BadRequestException("No mapping found for HTTP request", requestUri, request.getParameterMap(),
request.getMethod(), getServletName());
}