刚开始春天,我的测试项目有4个jsp页面。这些工作正常 当我与第三方工具集成时,它还有一个JSP页面 (在视图中只有一个jsp页面和多个JS,css和图像)。它也工作正常,但没有加载js和图像。
所以我将以下语句添加到spring-serlvet
xml文件
<mvc:resources mapping="/resources/**" location="/resources/" />
但是在添加此声明后无法正常工作(无法导航到其他页面,只能首先获得首页)
以下是我的配置: -
弹簧serlvet.xml
<bean 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>
<context:annotation-config/>
<mvc:resources mapping="/resources/**" location="/resources/" />
的web.xml
<listener>
<listener-class>org.springframework.web.util.WebAppRootListener</listener-class>
</listener>
<servlet>
<servlet-name>firstSpring</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>firstSpring</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
控制台日志
org.springframework.web.servlet.handler.SimpleUrlHandlerMapping - Mapped URL path [/resources/**] onto handler 'org.springframework.web.servlet.resource.ResourceHttpRequestHandler#0'
org.springframework.web.servlet.DispatcherServlet - FrameworkServlet 'firstSpring': initialization completed in 1890 ms
org.springframework.web.servlet.PageNotFound - No mapping found for HTTP request with URI [/firstSpring/indextonext] in DispatcherServlet with name 'firstSpring'
Using spring 4.2.5