Spring MVC can';你不做JSP吗?404

Spring MVC can';你不做JSP吗?404,spring,jsp,spring-mvc,Spring,Jsp,Spring Mvc,我只是想转到JSP。就这样。它给出了一个404,或者,如果我让它工作,没有HTML工作。我做的任何事都会破坏其他东西。我们在spring dispatcher servlet中引用为/r/的资源目录下混合了JSP、html、css等。请帮我编译SpringJSP。我将一起抛弃春天 这是我的春季调度servlet <beans xmlns="http://www.springframework.org/schema/beans" xmlns:context="http://www.s

我只是想转到JSP。就这样。它给出了一个404,或者,如果我让它工作,没有HTML工作。我做的任何事都会破坏其他东西。我们在spring dispatcher servlet中引用为/r/的资源目录下混合了JSP、html、css等。请帮我编译SpringJSP。我将一起抛弃春天

这是我的春季调度servlet

<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:context="http://www.springframework.org/schema/context"
    xmlns:mvc="http://www.springframework.org/schema/mvc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:aop="http://www.springframework.org/schema/aop" xmlns:jee="http://www.springframework.org/schema/jee"
    xmlns:lang="http://www.springframework.org/schema/lang" xmlns:p="http://www.springframework.org/schema/p"
    xmlns:tx="http://www.springframework.org/schema/tx" xmlns:util="http://www.springframework.org/schema/util"

    xsi:schemaLocation="
        http://www.springframework.org/schema/beans     
        http://www.springframework.org/schema/beans/spring-beans-4.0.xsd
        http://www.springframework.org/schema/context 
        http://www.springframework.org/schema/context/spring-context-4.0.xsd
        http://www.springframework.org/schema/mvc
        http://www.springframework.org/schema/mvc/spring-mvc-4.0.xsd
        http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee.xsd
        http://www.springframework.org/schema/lang http://www.springframework.org/schema/lang/spring-lang.xsd
        http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util.xsd">

    <mvc:view-controller path="/" view-name="/r/views/welcome.html"/>

    <!-- Enable @Controller annotation support -->
    <mvc:annotation-driven />

    <!-- Allow static resources to be served from the /resources folder -->
    <mvc:resources mapping="/r/**" location="/resources/" />

    <!-- Scan classpath for annotations (eg: @Service, @Repository etc) -->
    <context:component-scan base-package="com.cs" />

    <context:property-placeholder location="file:/TcatServer6/Mytime/properties/mytime-agentdesktop/agentdesktop.properties" />

</beans>

这是我的web.xml

<web-app xmlns="http://java.sun.com/xml/ns/javaee"
          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
          xsi:schemaLocation="http://java.sun.com/xml/ns/javaee 
          http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
          version="2.5">
  <display-name>agent-desktop</display-name>
  <context-param>
    <param-name>contextConfigLocation</param-name>
    <param-value>/WEB-INF/spring-security.xml</param-value>
  </context-param>
  <listener>
    <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
  </listener>
  <filter>
    <filter-name>springSecurityFilterChain</filter-name>
    <filter-class>org.springframework.web.filter.DelegatingFilterProxy</filter-class>
  </filter>
  <filter-mapping>
    <filter-name>springSecurityFilterChain</filter-name>
    <url-pattern>/*</url-pattern>
  </filter-mapping>
  <filter>
    <filter-name>httpMethodFilter</filter-name>
    <filter-class>org.springframework.web.filter.HiddenHttpMethodFilter</filter-class>
  </filter>
  <filter-mapping>
    <filter-name>httpMethodFilter</filter-name>
    <url-pattern>/*</url-pattern>
  </filter-mapping>
  <servlet>
    <servlet-name>agent-desktop</servlet-name>
    <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
    <load-on-startup>1</load-on-startup>
  </servlet>
  <servlet-mapping>
    <servlet-name>agent-desktop</servlet-name>
    <url-pattern>/</url-pattern>
  </servlet-mapping>

</web-app>

代理桌面
上下文配置位置
/WEB-INF/spring-security.xml
org.springframework.web.context.ContextLoaderListener
springSecurityFilterChain
org.springframework.web.filter.DelegatingFilterProxy
springSecurityFilterChain
/*
httpMethodFilter
org.springframework.web.filter.hiddenhttmpmethodfilter
httpMethodFilter
/*
代理桌面
org.springframework.web.servlet.DispatcherServlet
1.
代理桌面
/

您必须告诉Spring如何知道如何解析从控制器返回的视图。例如:

<bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver">
    <property name="viewClass" value="org.springframework.web.servlet.view.JstlView"/>
    <property name="prefix" value="/WEB-INF/jsp/"/>
    <property name="suffix" value=".jsp"/>
</bean>

有关更多信息,请参阅