当前位置: 首页 > 知识库问答 >
问题:

警告:没有发现HTTP请求与URI[/mvc/add]的映射在DispatcherServlet与名称调度服务器

樊腾
2023-03-14

我看到了类似的问题,并尝试将网址从/*映射到/,但它不起作用。我也尝试过直接从浏览器点击网址,但也不起作用。我对Spring不熟悉,有人能帮我吗?

    <!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>dispatcherservlet</servlet-name>
    <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
    <!-- <init-param>
      <param-name>contextConfigLocation</param-name>
      <param-value></param-value>
    </init-param> -->
    <load-on-startup>1</load-on-startup>
  </servlet>

  <servlet-mapping>
    <servlet-name>dispatcherservlet</servlet-name>
    <url-pattern>/</url-pattern>
  </servlet-mapping>
</web-app>

还有我的dispatcherservlet servlet。xml是

    <?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:context="http://www.springframework.org/schema/context"
       xmlns:mvc="http://www.springframework.org/schema/mvc"
       xsi:schemaLocation="http://www.springframework.org/schema/beans
                           http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
                           http://www.springframework.org/schema/context
                           http://www.springframework.org/schema/context/spring-context-3.0.xsd
                           http://www.springframework.org/schema/mvc
                           http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd">

    <mvc:resources mapping="/style/**" location="/style/"/>
<mvc:default-servlet-handler/>

<context:annotation-config/> 
   <context:component-scan base-package="com"/>
</beans>

最后是我的控制器

    package com;

import javax.annotation.Resource;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;

@Controller
public class addition {

    @RequestMapping("/add")
 void add() {
     System.out.println("im addint");
 }
}

我的索引。jsp作为欢迎文件

 <html>
<body>
<h2>Hello World!</h2>
<form action="add">
<input type="text" name="first number">first number<br>
<input type="text" name="second number">second number<br>
<input type="submit" name="add two numbers"><br>

</form>
</body>
</html>

当我运行时,我可以提交并点击add方法的URL,但我收到警告:在名为“DispatcherServlet”的DispatcherServlet中找不到URI为[/mvc/add]的HTTP请求的映射

共有1个答案

都昊乾
2023-03-14

你失踪了<代码>

 类似资料: