javax.ws.rs.NotFoundException:无法找到完整路径的资源

时间:2014-08-10 01:04:16

标签: java resteasy

windows 7(64);

jdk1.7.0_51(64);

RESTEasy3.0.7;

Apache的Tomcat的7.0.50;

项目名称:你好

RESTEasyHelloWorldService.java:

package com.javacodegeeks.enterprise.rest.resteasy;

import javax.ws.rs.GET;
import javax.ws.rs.Path;
import javax.ws.rs.PathParam;
import javax.ws.rs.Produces;
import javax.ws.rs.core.MediaType;

@Path("/RESTEasyHelloWorld")
public class RESTEasyHelloWorldService {

    @GET
    @Path("/{param}")
    @Produces(MediaType.TEXT_PLAIN)
    public String getMsg(@PathParam("param") String name) {
        String msg = "Rest say: good " + name;
        return msg;
    }
}

的web.xml:

<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns="http://java.sun.com/xml/ns/javaee"
    xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
    id="WebApp_ID" version="3.0">
    <display-name>hello</display-name>

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

    <!-- Auto scan REST service -->
    <context-param>
        <param-name>resteasy.scan</param-name>
        <param-value>true</param-value>
    </context-param>

    <!-- this should be the same URL pattern as the servlet-mapping property -->
    <context-param>
        <param-name>resteasy.servlet.mapping.prefix</param-name>
        <param-value>/rest</param-value>
    </context-param>

    <listener>
        <listener-class>
            org.jboss.resteasy.plugins.server.servlet.ResteasyBootstrap
            </listener-class>
    </listener>

    <servlet>
        <servlet-name>resteasy-servlet</servlet-name>
        <servlet-class>
            org.jboss.resteasy.plugins.server.servlet.HttpServletDispatcher
        </servlet-class>
    </servlet>

</web-app>

我打电话给http://localhost:8080/hello/rest/RESTEasyHelloWorld/a时为什么会收到例外 返回:

javax.ws.rs.NotFoundException: Could not find resource for full path: http://localhost:8080/hello/rest/RESTEasyHelloWorld/a
    at org.jboss.resteasy.core.registry.ClassNode.match(ClassNode.java:73)
    at org.jboss.resteasy.core.registry.RootClassNode.match(RootClassNode.java:48)
...

4 个答案:

答案 0 :(得分:5)

您可以尝试使用http://localhost:8080/hello/RESTEasyHelloWorld/a。 (没有/rest)。

如果您想使用/rest,可以将 RESTEasyHelloWorldService @Path修改为/rest/RESTEasyHelloWorld


但根据您使用的API版本,您可以做一个更简单的工作来让您的宁静服务正常工作。

我假设你的类路径上有 resteasy-jaxrs lib。

由于您不使用JBOSS或EAP,您还需要获得 resteasy-servlet-initializer 。使用 Servlet 3.0容器的文档,如TOMCAT here

您需要扩展应用,例如创建 RESTEasyService

@ApplicationPath("/rest")
public class RESTEasyService extends Application {
}

您不需要为该类提供任何实现,因为RESTEasy将扫描所有提供程序和资源。使用应用here的文档。

保留您的 RESTEasyHelloWorldService ,就像您在问题中说的那样:

@Path("/RESTEasyHelloWorld")
public class RESTEasyHelloWorldService {

    @GET
    @Path("/{param}")
    @Produces(MediaType.TEXT_PLAIN)
    public String getMsg(@PathParam("param") String name) {
        String msg = "Rest say: good " + name;
        return msg;
    }
}

现在你的web.xml并不需要任何东西。 Java WS-RS和RESTEasy已经在做所有事情。

您的web.xml可以是这样的:

<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns="http://java.sun.com/xml/ns/javaee"
    xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
    id="WebApp_ID" version="3.0">

    <display-name>hello</display-name>

</web-app>

RESTEasy官方文档在开始时有点令人困惑,但是一旦你理解了JBOSS和NON-JBOSS应用程序的实现是相同的(只是改变了lib的使用),你就会变得容易。

答案 1 :(得分:4)

当我尝试使用3.0.11.Final

时,我遇到了同样的问题
<dependency>
<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-jaxrs</artifactId>
<version>3.0.11.Final</version>
</dependency>

但是当我尝试使用其他版本时,它确实有效。

<dependency>
<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-jaxrs</artifactId>
<version>3.0.4.Final</version>
</dependency>

而且你正在尝试的URL(http://localhost:8080/hello/rest/RESTEasyHelloWorld/a)是正确的,因为你已经在web.xml中提到/ rest了。希望这有帮助。

答案 2 :(得分:2)

当我将我的应用程序从resteasy版本3.0.4迁移到3.0.12时,我遇到了同样的问题

Web服务与web.xml一样正常,类似于上面粘贴的user3926093。我发布的是版本3.0.7正在改变点。在那个版本之前,你甚至不需要resteasy-servlet-initializer作为上面提到的fasfsfgs。但是对于3.0.7及更高版本,我开始得到&#34;无法找到完整路径的资源:&#34;例外。

我为了使其工作而做的是将web.xml更改为与上面所述的fasfsfgs相同(基本上我从中删除了所有配置)并且我创建了javax.ws.rs.core.Application类的子类也像上面提到的fasfsfgs但我并不同意,#34;你不需要为该课程提供任何实施&#34;。您可以在此处找到实现此类的方式:https://goo.gl/9TJ3Y2。请注意,如果您想要每个请求模型,那么此实现对您不利。最后,不要忘记添加resteasy-servlet-initializer依赖。

答案 3 :(得分:0)

I got the same issue when I tried with **3.13.2.Final** but when I tried with **3.6.3.Final** it worked.

<dependency>
<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-jaxrs</artifactId>
<version>3.6.3.Final</version>
</dependency>