Как перейти по ссылке на другую страницу?
Мой код таков. Я думаю, что проблема может быть в чем-то моем web.xml файл. Вы не могли бы мне помочь?
Это мое index.html в разделе WebContent
<!DOCTYPE html> <html> <head> <meta charset="ISO-8859-1"> <title>Store</title> </head> <body> <a href="/store/addProduct.html">Add a product</a> </body> </html>
Это мое addProduct.html в разделе WebContent/Web-INF/html:
<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org"> <head> <meta charset="ISO-8859-1"> <title>Add a product</title> </head> <body> <!-- <form action="#" th:action="@{/newProduct}" method="post"> --> <!-- <button type="submit">Submit</button> --> <!-- </form> --> </body> </html>
Это мое web.xml в разделе WebContent/WEB-INF
<?xml version="1.0" encoding="UTF-8"?> <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" version="3.0"> <display-name>CrunchifySpringMVCTutorial</display-name> <welcome-file-list> <welcome-file>index.html</welcome-file> </welcome-file-list> <servlet> <servlet-name>store</servlet-name> <servlet-class> org.springframework.web.servlet.DispatcherServlet </servlet-class> <load-on-startup>1</load-on-startup> </servlet> <servlet-mapping> <servlet-name>store</servlet-name> <url-pattern>/addProduct.html</url-pattern> <!-- <url-pattern>/index.jsp</url-pattern> --> <!-- <url-pattern>/welcome.html</url-pattern> --> <!-- <url-pattern>*.html</url-pattern> --> </servlet-mapping> </web-app>
Это мое store-servlet.xml в разделе WebContent/WEB-INF
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:mvc="http://www.springframework.org/schema/mvc" xmlns:context="http://www.springframework.org/schema/context" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation=" http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd"> <context:component-scan base-package="com.ecommerce.store" /> <bean id="viewResolver" class="org.springframework.web.servlet.view.UrlBasedViewResolver"> <property name="viewClass" value="org.springframework.web.servlet.view.JstlView" /> <property name="prefix" value="/WEB-INF/html/" /> <property name="suffix" value=".html" /> </bean> </beans>
И независимо от того, что я пытаюсь, я продолжаю получать одну и ту же ошибку:
sept. 12, 2017 3:11:50 PM org.springframework.web.servlet.PageNotFound noHandlerFound AVERTISSEMENT: No mapping found for HTTP request with URI [/store/addProduct.html] in DispatcherServlet with name 'store'
Можете ли вы помочь мне, пожалуйста? Я в отчаянии.
Что я уже пробовал:
Я пытался изменить мою web.xml во многих отношениях, но я не могу получить это право.