No mapping found for HTTP request with URI with java based configuration
在学习 spring 时,我试图运行 Spring in Action 的代码示例
但它在 tomcat 日志中向我显示了以下提到的错误:
1
|
11–Aug–2016 12:15:57.561 WARNING [http–nio–8080–exec–1] org.springframework.web.servlet.PageNotFound.noHandlerFound No mapping found for HTTP request with URI [/RestTester–0.0.1–SNAPSHOT/] in DispatcherServlet with name ‘dispatcher’
|
我正在尝试仅借助基于 java 的配置来配置 spring。
下面提到了相同的代码:
TestProjectInitializer.java
1
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
package test.config;
import org.springframework.web.servlet.support.AbstractAnnotationConfigDispatcherServletInitializer; public class TestProjectInitializer extends AbstractAnnotationConfigDispatcherServletInitializer { @Override @Override @Override |
WebConfig.java
1
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
package test.config;
import org.springframework.context.annotation.Bean; @Configuration @Bean @Override |
RootConfig.java
1
2 3 4 5 6 7 8 9 10 11 12 13 |
package test.config;
import org.springframework.context.annotation.ComponentScan; @Configuration } |
HomeController.java
1
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
package test.controllers;
import org.springframework.stereotype.Controller; @Controller } |
pom.xml
1
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 |
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>test</groupId> RestTester</artifactId> <version>0.0.1–SNAPSHOT</version> <packaging>war</packaging> <dependencies> <dependency> <dependency> <dependency> <build> |
web.xml
1
2 3 4 5 6 7 8 9 10 11 12 13 |
<?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" id="WebApp_ID" version="3.0"> <display–name>test</display–name> <welcome–file–list> <welcome–file>index.html</welcome–file> <welcome–file>index.htm</welcome–file> <welcome–file>index.jsp</welcome–file> <welcome–file>default.html</welcome–file> <welcome–file>default.htm</welcome–file> <welcome–file>default.jsp</welcome–file> </welcome–file–list> </web–app> |
目录结构
请帮助我理解我做错了什么。
Webmvc 上的基础包名错误,应该是 test.controller.
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/267517.html