I am using @RequestMapping("/**") but it does not load all the web related files like js, css etc.
@ControllerAdvice public class ServiceExceptionHandler extends ResponseEntityExceptionHandler {@RequestMapping("/**") public ModelAndView fallbackHandler(HttpServletRequest request, HttpServletResponse response) throws Exception {
return new ModelAndView("xxx/errors");
}