gpt4 book ai didi

javax.ws.rs.NotFoundException : Could not find resource for full path

转载 作者:塔克拉玛干 更新时间:2023-11-03 03:40:01 24 4
gpt4 key购买 nike

环境

Windows 7(64)
jdk1.7.0_51(64)
RESTEasy3.0.7
apache-tomcat-7.0.50
Project Name: hello

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)
...

最佳答案

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

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


但根据您使用的 API 版本,您可以通过更简单的工作来让您的 Restful 服务正常运行。

我假设您的类路径中有 resteasy-jaxrs 库。

由于您没有使用 JBOSS 或 EAP,因此您还需要获取 resteasy-servlet-initializer。使用像 TOMCAT 这样的 Servlet 3.0 容器 的文档 here .

您需要扩展Application,例如创建一个RESTEasyService:

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

您无需为该类提供任何实现,因为 RESTEasy 将扫描所有提供者和资源。使用 Application 类的文档 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 和非 JBOSS 应用程序的实现是相同的(只是使用发生变化的库),您就会变得更容易。

关于javax.ws.rs.NotFoundException : Could not find resource for full path,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25224581/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com