jsp - No mapping found for HTTP request with URI with annotation config Spring MVC and Jetty -
    I'm only using annotation configuration, the server starts, but when I use some pages error is displayed:    Warning: no mapping found for HTTP request with URI [/WEB-INF/view/main.jsp] name 'org.springframework.web.servlet.DispatcherServlet -D7259e with DispatcherServlet in    Controller mapping works fine, but no JSP page is full.   I am using Jetty 9.2.0.M0 and Spring MVC 4.0.4 release.   JetTyP Config:    Private Static Last String CONTEXT_PATH = "/"; Private Static Last String MAPPING_URL = "/ *"; Private Zero Server (Int port) throws exceptions {server server = new server (port); Server.addLifeCycleListener (New LifeCycleListener ()); Server.setHandler (getServletContextHandler (getContext ())); Server.start (); Server.join (); } Private static ServletContextHandler getServletContextHandler (WebApplicationContext context) throws IOException {LOGGER.info ( "ServletContextHandler is ready"); CircleContaxHandler themeHandler = new circactont...
Comments
Post a Comment