我发现了很多关于我遇到的问题的类似问题,并尝试了很多解决方案,但似乎没有一个有效。
最奇怪的是,我的一个员工可以运行该程序,因此代码不是问题。
我得到的错误是当我运行应用时,我无法触及welcomepage.html
和hellopage.html
。
(分解)。 20,2016 9:42:37 AM org.springframework.web.servlet.DispatcherServlet noHandlerFound AVERTISSEMENT:没有找到带URI的HTTP请求的映射 [/ SpringMVC/hellopage.html]在DispatcherServlet中,名称为“spring”
的web.xml
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
<servlet>
<servlet-name>spring</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>spring</servlet-name>
<url-pattern>*.html</url-pattern>
</servlet-mapping>
</web-app>
弹簧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:p="http://www.springframework.org/schema/p"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:mvc="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">
<context:component-scan base-package="com.javatpoint"></context:component-scan>
<bean
class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix" value="/WEB-INF/jsp/"></property>
<property name="suffix" value=".jsp"></property>
</bean>
</beans>
HelloWorldController.java
package com.javatpoint;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.servlet.ModelAndView;
@Controller
public class HelloWorldController {
@RequestMapping("/hello")
public ModelAndView helloWorld() {
String message = "HELLO SPRING MVC";
return new ModelAndView("hellopage", "message", message);
}
}
WelcomeWorldController.java
package com.javatpoint;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.servlet.ModelAndView;
@Controller
public class WelcomeWorldController {
@RequestMapping("/welcome")
public ModelAndView helloWorld() {
String message = "WELCOME SPRING MVC";
return new ModelAndView("welcomepage", "message", message);
}
}
的index.jsp
<html>
<body>
<a href="hellopage.html">click</a>
|
<a href="welcomepage.html">click</a>
</body>
</html>
这是我用tomcat 7.0.73
运行的maven项目项目目录的结构
答案 0 :(得分:2)
正如你所说,代码没有问题,因为它在你朋友的系统上运行,我假设配置有问题。
请验证所有配置文件和pom.xml
中的项目名称是否正确答案 1 :(得分:0)
当您使用@RequestMapping(“/ hello”)配置控制器(HelloWorldController)请求映射时,您的URL应为/SpringMVC/hello.html(不是/SpringMVC/hellopage.html)。 (WelcomeWorldController)请求映射也一样。