#spring #maven
#spring #maven
Вопрос:
Я новичок в Spring MVC. Я знаю, что есть много ответов на мои вопросы по stackoverflow, но, к сожалению, ни один из них не помог решить проблему mu. Я пытаюсь реализовать простой mvc-код, но я не могу определить свою ошибку: Я получаю предупреждение: «Не найдено сопоставления для HTTP-запроса с URI [/SpringMVCDemo / add] в DispatcherServlet с именем ‘sachin'»
вот index.jsp
<html>
<body>
<form action="add">
<input type="text" name="t1" /> <input type="text" name="t2" />
<input type="submit"/>
</form>
</body>
</html>
Мой web.xml
<!DOCTYPE web-app PUBLIC
"-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
"http://java.sun.com/dtd/web-app_2_3.dtd" >
<web-app>
<display-name>Archetype Created Web Application</display-name>
<servlet>
<servlet-name>sachin</servlet-name>
<servlet-class>
org.springframework.web.servlet.DispatcherServlet
</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>sachin</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
</web-app>
Мой контроллер, где я использовал аннотацию @Controller и @RequestMapping
package com.sachin;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
@Controller
public class AddController {
@RequestMapping("/add")
public void add() {
System.out.println("I am in AddController");
}
}
Мой sachin-servlet.xml
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:ctx="http://www.springframework.org/schema/context"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
http://www.springframework.org/schema/mvc
http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-2.5.xsd ">
<ctx:annotation-config></ctx:annotation-config>
<ctx:component-scan base-package="com.sachin.*"></ctx:component-scan>
</beans>
Любые предложения приветствуются.
Комментарии:
1. Не могли бы вы, пожалуйста, указать в качестве кода DispatcherServlet?
2. @M.Ismail это часть org.springframework.web.servlet. Библиотека DispatcherServlet. Вы этого хотите?
3. попробуйте изменить шаблон URL на /* вместо /