java - spring3.0 mvc问题(请求的资源不可用)

标签 java spring spring-mvc

我是 Spring MVC 3.0 的新手,正在尝试编写一个示例 Web 应用程序来感受它。我能够获取 url 来调用我的关联 Controller ,但无法将请求转发到我的 jsp 资源,如浏览器上的输出所示:

The requested resource (/Spring30HelloWorld/helloworldcontroller) is not available.

如果能就解决问题提出建议,我们将不胜感激!!请引用下面我的代码设置。

提前致谢!

web.xml(位置:/WebContent)

<?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" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
 xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
 id="WebApp_ID" version="2.5">
 <display-name>Spring30HelloWorld</display-name>
 <servlet>
  <servlet-name>A</servlet-name>
  <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
  <load-on-startup>1</load-on-startup>
 </servlet>
 <servlet-mapping>
  <servlet-name>A</servlet-name>
  <url-pattern>*.htm</url-pattern>
 </servlet-mapping>
 <welcome-file-list>
  <welcome-file>index.htm</welcome-file>
 </welcome-file-list>
</web-app>

A-servlet.xml(位置:/WebContent/WEB-INF/)

<?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.controller" />
</beans>

HelloWorldController.java(位置:/src/com/controller)

package com.controller;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.portlet.ModelAndView;


@Controller
public class HelloWorldController {

 @RequestMapping("/helloWorld" )
 public ModelAndView sayHello() {
  System.out.println("hello!");
  //return new ModelAndView("helloworld.jsp", "hello", "hello");
  return new ModelAndView("helloworld.jsp");
 }

}

helloworld.jsp(位置:/WebContent/)

<html>
<head>
<title>Hello World</title>
</head>
<body>
<h1>Simple Spring 3.0 Web App</h1>

<p></p>
</body>
</html>

最佳答案

您将您的 servlet 映射到 *.htm

改变

@RequestMapping("/helloWorld" )

@RequestMapping("/helloWorld.htm" )

然后输入/A/helloworld.htm

此外,您还可以阅读 Spring MVC 框架 online doc

关于java - spring3.0 mvc问题(请求的资源不可用),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2896454/

相关文章:

java.util.zip.ZipError : invalid CEN header (bad signature)

java - BeanPropertyRowMapper 在 spring 内部是如何工作的?

java - 如何在 Eclipse 中修复 "Cannot change version of project facet Dynamic Web Module to 2.4"?

ajax - 如何将参数传递给 Thymeleaf Ajax 片段

spring - Spring 3类型转换系统中 "SPI"的完整形式是什么?

java - 如何根据鼠标单击获取 3D 中点的坐标?

java - 将 2D 数组拆分为更小的、大小相等的 2D 子数组

java - Spring boot + tomcat 8.5 + mongoDB,AsyncRequestTimeoutException

java - Spring 框架 - GET 和 POST 之间的区别

java - gitignore 文件不隐藏 github 的 .idea 目录