gpt4 book ai didi

java - 404带 Spring 3

转载 作者:行者123 更新时间:2023-12-04 06:39:04 25 4
gpt4 key购买 nike

你好
我正在学习 spring 3 的第一个类。我在 eclipse 中创建了一个动态 Web 应用程序,其结构如下。

spring3mvc \src\my.spring.HelloWorldController.java
\WebContent
|
|-----WEB-INF\jsp\hello.jsp
|-----index.jsp
|-----WEB-INF\web.xml
|-----WEB-INF\spring-servlet.xml
|-----WEB-INF\lib\...*.jar files

我创建了 spring-servlet.xml 如下
 <beans xmlns="http://www.springframework.org/schema/beans" 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xmlns:p="http://www.springframework.org/schema/p"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/mvc
http://www.springframework.org/schema/context
http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd
http://www.springframework.org/schema/context/spring-context-3.0.xsd">
<mvc:annotation-driven/>

<context:component-scan base-package="my.spring" />
<bean id="jspViewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver"
p:prefix="/WEB-INF/jsp/"
p:suffix=".jsp">

<property name="contentType" value="text/html; charset=utf-8" />
</bean>
</beans>

并对 Controller 进行编码
package my.spring;
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 World, Spring 3.0!";
return new ModelAndView("hello", "message", message);
}
}

index.jsp 有一个指向 hello View 的链接
<html>
<body>
<a href="hello.html">Say Hello</a>

</body>
</html>

最后在 hello.jsp 我已经把
<html>
<body>
${message}
</body>
</html>

我的 web.xml 有
<display-name>Spring3MVC</display-name>
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>

<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>

当我在 Tomcat6 服务器(通过 eclipse)上运行应用程序时,我可以在
http://localhost:8080/Spring3MVC/ 。它显示了 hello 页面的链接。当我点击它(http://localhost:8080/Spring3MVC/hello.html)时,我收到 404 错误。
message /Spring3MVC/hello.html
description The requested resource (/Spring3MVC/hello.html) is not available.

知道我该如何解决这个问题吗?

谢谢

标记。

最佳答案

我相信问题不是 View 解析器(它会打印其他异常)。

仔细阅读错误消息,它告诉了问题所在:

message /Spring3MVC/hello.html description 
The requested resource (/Spring3MVC/hello.html) is not available.

就是你好 .html (handler) 找不到,不是jsp。 ——但我不知道确切的问题是什么。 -- 我试图重现该错误,但没有得到完全相同的错误消息。

补充——找到问题

当您启动服务器时,它会在日志文件中打印到 Controller 的所有映射。在你的情况下,必须有类似的东西
INFO : org.springframework.web.servlet.mvc.annotation.DefaultAnnotationHandlerMapping - Mapped URL path [/hallo] onto handler 'halloController'

如果您没有这样的声明,那么您的上下文扫描有问题,或者您忘记启用注释驱动的 MVC @Controller 编程模型。这可以通过添加来启用:
<!-- Enables the Spring MVC @Controller programming model -->
<annotation-driven />

关于java - 404带 Spring 3,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4497271/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com