org.springframework.web.servlet.PageNotFound noHandlerFound找不到HTTP请求的映射

问题描述 投票:0回答:1

我被困在这一点上,无法找到确切的原因。但是,我发现了许多类似的问题,但仍然无法解决我的问题。我在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]: https://i.stack.imgur.com/Z5SN3.jpg
java spring spring-mvc servlets web.xml
1个回答
0
投票

所以,实际上我不是在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.*"/>

也许早春版本中允许使用。但是,如果您看到的是官方文档,则看不到使用带有'*'符号的版本。我试图在本地使用它,但对我却不起作用。因此,请使用com.demo.controllers

© www.soinside.com 2019 - 2024. All rights reserved.