Warning: file_get_contents(/data/phpspider/zhask/data//catemap/6/entity-framework/4.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Java spring3.0 mvc问题(请求的资源不可用)_Java_Spring_Spring Mvc - Fatal编程技术网

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

Java spring3.0 mvc问题(请求的资源不可用),java,spring,spring-mvc,Java,Spring,Spring Mvc,我是SpringMVC3.0的新手,正在尝试编写一个示例Web应用程序来体验它。我能够获取url以调用关联的控制器,但无法将请求转发到我的jsp资源,如浏览器上的输出所示: 请求的资源 (/Spring30HelloWorld/helloworldcontroller) 没有 如果您能就解决此问题提出建议,我们将不胜感激!!请参考下面的代码设置 提前谢谢 web.xml(位置:/WebContent) helloworld.jsp(位置:/WebContent/) 你好,世界 SimpleSp

我是SpringMVC3.0的新手,正在尝试编写一个示例Web应用程序来体验它。我能够获取url以调用关联的控制器,但无法将请求转发到我的jsp资源,如浏览器上的输出所示:

请求的资源 (/Spring30HelloWorld/helloworldcontroller) 没有

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

提前谢谢

web.xml(位置:/WebContent)

helloworld.jsp(位置:/WebContent/)


你好,世界
SimpleSpring3.0Web应用程序


将servlet映射到*.htm

改变

@RequestMapping("/helloWorld" )

并键入
/A/helloworld.htm


另外,您可以阅读SpringMVC框架

我现在发现了问题。ModelAndView的命名空间应该是servlet而不是portlet。谢谢你的反馈!
<?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>
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");
 }

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

<p></p>
</body>
</html>
@RequestMapping("/helloWorld" )
@RequestMapping("/helloWorld.htm" )