Update error message in DispatcherServlet

Issue: SPR-8338
This commit is contained in:
Rossen Stoyanchev 2012-08-21 15:33:58 -04:00
parent 364bb696e0
commit 888835445c
1 changed files with 1 additions and 1 deletions

View File

@ -1126,7 +1126,7 @@ public class DispatcherServlet extends FrameworkServlet {
}
}
throw new ServletException("No adapter for handler [" + handler +
"]: Does your handler implement a supported interface like Controller?");
"]: The DispatcherServlet configuration needs to include a HandlerAdapter that supports this handler");
}
/**