Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [jetty-users] Spring MVC cannot find JSPs when deployed into embedded Jetty 8 server

I haven't tried this, but I think you need to override configureDefaultServletHandling in your Spring MVC config in order to enable forwarding back to the default servlet. Since the DispatcherServlet servlet  is mapped as the default servlet, if it can't handle a particular request, it forwards back to the default servlet. Not sure why it would make difference with embedded vs not embedded but it's something to try.

Back to the top