В Spring MVC я получаю следующие ошибки: - WARN [org.springframework.web.servlet.PageNotFound] (задание по умолчанию-2) Нет сопоставления для GET /rFrontEndX2/book/resources/css/bookDetails.css WARN [org.springframework.web.servlet.PageNotFound] (задание по умолчанию-1) Нет сопоставления для GET /rFrontEndX2/book/resources/css/footer.css
WARN [org.springframework.web.servlet.PageNotFound](задание по умолчанию-2) Нет сопоставления для GET /rFrontEndX2/book/resources/images/inspiring-timsts-original-imaf7yv3sgbcwsvm.jpeg
Но та же страница работает, когда я получаю ее из / url. Но та же страница возвращает ошибку с / book / inspiringThoughts url. Пожалуйста, помогите мне ...
web.xml это
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.5" 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">
<!-- The definition of the Root Spring Container shared by all Servlets
and Filters -->
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>
/WEB-INF/spring-config.xml
</param-value>
</context-param>
<!-- Creates the Spring Container shared by all Servlets and Filters -->
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<!-- Processes application requests -->
<servlet>
<servlet-name>appServlet</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/spring-config.xml</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>appServlet</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
</web-app>
spring-config.xml это
<?xml version="1.0" encoding="UTF-8"?>
<beans:beans
xmlns="http://www.springframework.org/schema/mvc"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:beans="http://www.springframework.org/schema/beans"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/mvc
http://www.springframework.org/schema/mvc/spring-mvc.xsd
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context.xsd">
<annotation-driven />
<resources mapping="/resources/**" location="/resources/" />
<beans:bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<beans:property name="prefix" value="/views/" />
<beans:property name="suffix" value=".jsp" />
</beans:bean>
<context:component-scan base-package="controller" />
</beans:beans>
HomeController.java
package controller;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
@Controller
public class HomeController {
@RequestMapping(value="/",method=RequestMethod.GET)
public String homePage()
{
return "home";
}
@RequestMapping(value="/book",method=RequestMethod.GET)
public String books()
{
return "books";
}
}
BookController.java
package controller;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
@Controller
@RequestMapping(value="/book")
public class BookController {
@RequestMapping(value="/inspiringThoughts",method=RequestMethod.GET)
public String inspiringThoughts()
{
return "inspiringThoughts";
}
}
Когда я обмениваюсь , возвращаюсь "домой "; с возвращаю "inspiringThoughts"; тогда вдохновляющая страница Thoughts.jsp работает, но страница home.jsp не работает.