java - org.springframework.web.servlet.PageNotFound noHandlerFound 未找到 HTTP 请求的映射

标签 java spring spring-mvc servlets web.xml

我被困在这一点上,无法找到确切的原因。但是,我发现了很多类似的问题,但我的问题似乎仍然没有解决。我在 sts 4 中运行它并添加了一个 tomcat 服务器 9.0在本地运行它。我发现的最接近的问题是( org.springframework.web.servlet.PageNotFound noHandlerFound No mapping found for HTTP request with URI ),但它似乎仍然不适合我。下面是我的代码。

web.xml

<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_2_5.xsd" version="3.0">
  <display-name>My Demo App</display-name>
  <servlet>
    <servlet-name>MyDemoApp</servlet-name>
    <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
    <init-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>/WEB-INF/config/myDemoApp-servletConfig.xml</param-value>
    </init-param>
  </servlet>

  <servlet-mapping>
    <servlet-name>MyDemoApp</servlet-name>
    <url-pattern>*.html</url-pattern>
  </servlet-mapping>
</web-app>

***myDemoApp-servletConfig.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:mvc="http://www.springframework.org/schema/mvc"
    xmlns:context="http://www.springframework.org/schema/context"
    xmlns:p="http://www.springframework.org/schema/p"
    xsi:schemaLocation="http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.1.xsd
                    http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.1.xsd     
                    http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.1.xsd
                    http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.1.xsd">
 <mvc:annotation-driven/>

 <context:component-scan base-package="com.demo.controllers.*"/>
 <bean  class="org.springframework.web.servlet.view.InternalResourceViewResolver" p:prefix ="WEB-INF/jsp/" p:suffix =".jsp"/>

</beans>


Controller



package com.demo.controllers

import org.springframework.ui.Model;
import org.springframework.stereotype.*;
import org.springframework.web.bind.annotation.RequestMapping;

@Controller
public class MyDemoController {

    private String[] quotes= {"To be or not to be - Shakespeare",
                              "Spring in nature's way of syaing Let's Party",
                              "The time is always right to do what is right"}


    @RequestMapping(value="/getQuote.html")
    public String getRandomQuote(Model model) {



        int rand=new Random().nextInt(quotes.length);
        String randomQuote=quotes[rand];
        model.addAttribute("randomQuote",randomQuote);
        return "quote";
    }

}


  [1]: /image/Z5SN3.jpg

最佳答案

所以,实际上我没有在 Eclipse 中工作,但是你有两个 src 文件夹吗?如果是这样,您需要将所有类和资源保存在一个 src 文件夹下,如下所示:

-src 
   -main  
      -java (Your controllers)
          -other packages under java folder
      -resources (spring configuration file)
      -webapp (jsp, web.xml etc.)

除此之外,我猜线路不正确

<context:component-scan base-package="com.demo.controllers.*"/>

也许在 Spring 的早期版本中是允许的。但如果你看官方文档,我没有看到使用带有“*”符号的版本。我尝试在本地使用它,但它对我不起作用。所以使用com.demo.controllers

关于java - org.springframework.web.servlet.PageNotFound noHandlerFound 未找到 HTTP 请求的映射,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58257253/

相关文章:

java - Spring Batch 将处理后的记录写入文件

spring - 使用复合 View 处理 BindingResults 和模型

spring - 我可以将 Spring MVC servlet 的 WebApplicationContext 注入(inject) DelegatingFilterProxy 吗?

spring - 命令对象和DTO,有区别吗?

java - ProgressDialog 仅显示一次,然后不再起作用

java - JGoodies 表单演示代码

java - 没有可用的事务性 EntityManager - 使用 JPA Api,Hibernate Session 出错

java - Eclipse Galileo 在 OS X 更新到 10.6.3 后无法启动

java - 蠕虫(蛇)游戏,棋子生长/move

spring - 有人可以解释一下 Spring web.xml 文件吗?