在Spring restful Web服务中获取404请求的资源不可用

时间:2013-08-04 17:56:31

标签: java spring maven spring-mvc tomcat7

我正在使用spring 3.2.3.RELEASE版本和tomcat 7.我想使用spring框架构建一个示例REST API。我的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">
<context-param>
    <param-name>contextConfiguration</param-name>
    <param-value>/WEB-INF/sample-servlet.xml</param-value>
</context-param>

<listener>
    <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<servlet>
    <servlet-name>sample-servlet</servlet-name>
    <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
    <load-on-startup>1</load-on-startup>
</servlet>

<servlet-mapping>
    <servlet-name>sample</servlet-name>
    <url-pattern>/myProjects</url-pattern>
</servlet-mapping>

我的sample-servlet.xml看起来像这样:

<beans>
    <context:component-scan base-package="com.myprojects.sampleproject" />
</beans>

基本上我不想要任何JSP文件,因为我只想从控制器返回字符串(JSON字符串)。我的控制器看起来像这样:

package com.myprojects.sampleproject;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;

/**
 *
 * @author author
 */
@Controller
@RequestMapping("/user")
public class sampleprojectController {

    @RequestMapping(method = RequestMethod.GET)
    public String getHello() {
        return "hello world";
    }
}

我能够成功创建war文件并将其部署在tomcat上。但是当我点击localhost:8080 / myProjects / user时,我得到404.我正在使用maven来构建和部署包。

我之前在JAX-RS上工作过,我们可以在netbeans中配置创建一个编写Web服务的项目,一切都派上用场。但在这里,我实际上是在尝试将基于maven的项目转换为在tomcat上运行的Web应用程序。为此,我尝试了这个示例,但我无法启动并运行。我错过了什么吗?

3 个答案:

答案 0 :(得分:2)

我猜你错过了项目的上下文路径。如果您正在使用eclipse,您可以在项目属性中找到上下文路径 - &gt; Web项目设置。

另外,请确保您的控制台没有错误。

答案 1 :(得分:1)

我相信您需要使用/为您的方法提供RequestMapping。像这样:

@RequestMapping(value = "/", method = RequestMethod.GET)
public String getHello() {
    return "hello world";
}

答案 2 :(得分:1)

如果您想要返回正文,请使用特殊注释@ResponseBody。默认情况下,使用@RequestMapping注释的控制器方法必须返回视图名称。

        @RequestMapping(method = RequestMethod.GET)
        @ResponseBody
        public String getHello() {
            return "hello world";
        }

编辑:

<mvc:annotation-driven />添加到sample-servlet.xml。

替换根上下文配置文件:

<context-param>
    <param-name>contextConfiguration</param-name>
    <param-value>/WEB-INF/sample-servlet.xml</param-value>
</context-param>

<context-param>
    <param-name>contextConfiguration</param-name>
    <param-value>/WEB-INF/context.xml</param-value>
</context-param>

将所有弹簧配置移动到根上下文/WEB-INF/context.xml并将/WEB-INF/sample-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"
       xsi:schemaLocation="
       http://www.springframework.org/schema/beans
       http://www.springframework.org/schema/beans/spring-beans.xsd
       ">
</beans>