14

当我尝试在 Apache Tomcat 上访问使用 Jersey 和 maven 实现的 HelloWorld RESTful Web 服务时,出现以下异常。

URL: http://localhost:8080/TestRest/rest/hello/abcd

com.sun.jersey.api.container.ContainerException:ResourceConfig 实例不包含任何根资源类。

我查看了互联网上的各种来源,他们说发生异常是因为 web.xml 中给出的包结构中没有类,但我确保它们都是正确的。

非常感谢您对此的任何帮助。

以下是 pom.xml 的代码

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
      <modelVersion>4.0.0</modelVersion>
      <groupId>my.test.rest</groupId>
      <artifactId>TestRest</artifactId>
      <packaging>war</packaging>
      <version>0.0.1-SNAPSHOT</version>
      <name>TestRest Maven Webapp</name>
      <url>http://maven.apache.org</url>
      <repositories>
                <repository>
                <id>maven2-repository.java.net</id>
                <name>Java.net Repository for Maven</name>
                <url>http://download.java.net/maven/2/</url>
                <layout>default</layout>
        </repository>
  </repositories>
  <dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>3.8.1</version>
      <scope>test</scope>
    </dependency>
    <dependency>
            <groupId>com.sun.jersey</groupId>
            <artifactId>jersey-server</artifactId>
            <version>1.8</version>
    </dependency>
  </dependencies>
  <build>
    <finalName>TestRest</finalName>
  </build>
</project>

这是简单的 HelloWorldService。

package com.rest;

import javax.ws.rs.GET;
import javax.ws.rs.Path;
import javax.ws.rs.PathParam;
import javax.ws.rs.core.Response;

@Path("/hello")
public class HelloWorldService {

    @GET
    @Path("/{param}")
    public Response getMsg(@PathParam("param") String msg) {

        String output = "Hello, " + msg;

        return Response.status(200).entity(output).build();

    }

}

最后,web.xml

<web-app id="WebApp_ID" version="2.4"
    xmlns="http://java.sun.com/xml/ns/j2ee" 
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee 
    http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
    <display-name>Restful Web Application</display-name>

    <servlet>
        <servlet-name>HelloServlet</servlet-name>
        <servlet-class>
                     com.sun.jersey.spi.container.servlet.ServletContainer
                </servlet-class>
        <init-param>
             <param-name>com.sun.jersey.config.property.packages</param-name>
             <param-value>com.rest</param-value>
        </init-param>
        <load-on-startup>1</load-on-startup>
    </servlet>

    <servlet-mapping>
        <servlet-name>HelloServlet</servlet-name>
        <url-pattern>/rest/*</url-pattern>
    </servlet-mapping>

</web-app>

我希望我的目录结构也是正确的,如果不是,请纠正我。

目录结构

4

2 回答 2

16

您在错误的源文件夹中有 HelloWorldService.java。它必须在 src/main/java中,而不是在 src/main/resources 中。这是一个很大很大的不同!

这意味着您的 Java 代码尚未编译,这就是您收到错误的原因。没有可以处理请求的类。

看看Maven 标准目录布局

于 2012-11-08T17:36:38.097 回答
8

是的,在使用 Maven 在 Java 中开发 RESTful Web 服务时,它在 Eclipse Indigo 中存在问题,因为它没有创建正确的目录结构。因此,删除给定的源目录并将源添加为 src/main/java 就像@maba 正确提到的那样是最好的解决方法。您可以参考这里以获取有关在 Eclipse Indigo 中使用 Maven 在 Java 中开发 RESTful Web 服务的详细说明...

http://kausalmalladi.blogspot.in/2012/11/developing-restful-java-web-service-in.html

于 2012-11-18T06:13:57.023 回答