我正试图在日食中制作一个春天问候世界节目。这是代码
index.jsp
<a href="hello.html">click</a>
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 HOW R U";
return new ModelAndView("hellopage", "message", message);
}
}
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>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>spring</servlet-name>
<url-pattern>*.html</url-pattern>
</servlet-mapping>
</web-app>
spring-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"
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" />
<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix" value="/WEB-INF/jsp/" />
<property name="suffix" value=".jsp" />
</bean>
</beans>
hellopage.jsp
Message is: ${message}
当我转到http://localhost:8080/SpringMVCBasic/时,我正确地打开了index.jsp页面
但是当我点击页面上的链接,即网址http://localhost:8080/SpringMVCBasic/hello.html时,我收到了错误
HTTP Status 404 -
当我使用这个http://localhost:8080/SpringMVCBasic/hello的网址时,我得到了这个
HTTP Status 404 - /SpringMVCBasic/hello
我已从here
获取代码答案 0 :(得分:2)
您提供了以下地图的映射:
@RequestMapping("/hello")
但你必须这样做:
@RequestMapping("/hello.html")
答案 1 :(得分:0)
我下载了eclipse项目并在jboss上运行它。 需要包括以下罐子:
如果我之后使用Java 8运行jboss似乎一切正常。
答案 2 :(得分:0)
在spring-servlet.xml中启用Spring MVC @Controller编程模型,如下所示:
<mvc:annotation-driven />
答案 3 :(得分:0)
在index.jsp而不是写
href="hello.html">
change to
href="./hello.html">
和
在HelloworldController.java
而非写作
@RequestMapping("/hello")
更改为: -
@RequestMapping(value="/hello.html")
答案 4 :(得分:-1)
请将所有这些jar添加为外部jar或将这些jar添加到lib文件夹