When using the SPRINGMVC framework in a project, the view path string returned in the Controller method is finally consolidated with the configuration path in the XML file configuration, resulting in a completed view file path. Then there's a problem with the difference between Tomcat and jetty:
<bean id= "Internalviewresolver" class= "Org.springframework.web.servlet.view.InternalResourceViewResolver" p:viewclass= "Org.springframework.web.servlet.view.JstlView" p:prefix= "/web-inf/view/jsp" p:suffix = ". jsp" p:order= "1"/>
Tomcat in view file/web-inf/view/jsp//default/ui/user/update_passwd.jsp can be found
And in the Jetty view file /web-inf/view/jsp//default/ui/user/update_passwd.jsp can not be found, remove superfluous/rear can find, jetty for path specification more stringent?
Tomcat/jetty path compatibility issues between containers