I am trying to setup a Spring MVC project. I have added a dispatcher servlet, a jsp and setup the web.xml file. But I keep getting
WARN org.springframew
You seem to be missing the
note that I've removed the version from the xsd files, this means that it will use the schema from your jar files (and there will be a validation error in case of incompatibilty)
after @Nikolay's comment, I've also noticed an error in your mapping (note that you still need the annotation-driven element), you should either change the mapping in your controller to
@RequestMapping("/hello.jsp")
and access it via
/safesite/hello.jsp
OR, more common, change the servlet mapping to
HelloWeb
/
and access as Nikolay said so /safesite/hello