2

在 Jira 插件开发中,我在位置创建了一个休息资源类 - “[FOLDER]/Src/Main/JAVA/com.company.jira.plugin.REST/PlanIssuesRestResources”

现在,当我尝试在浏览器中访问以下网址时,

http://[主机]:2990/jira/rest/auth/1/PlanIssuesRestResource

然后它在浏览器中显示以下错误消息:

<status-code>404</status-code>
<message>null for uri: http://localhost:2990/jira/rest/auth/1/PlanIssuesRestResource
</message>
</status>

我的 Rest 资源类如下所示:

@Path("/message")
public class PlanIssuesRestResource {
 @GET
        @AnonymousAllowed
        @Produces({MediaType.APPLICATION_JSON, MediaType.APPLICATION_XML})
       @Path("/{key}")
      public Response getMessageFromPath(@PathParam("key") String key)
        {
            return Response.ok(new PlanIssuesResourceModel(key,     getMessageFromKey(key))).build();
        }

我怎样才能访问这个 URL?

谢谢

4

1 回答 1

1

据发现,

请点击以下链接了解有关 Rest 资源 URL 组合的详细信息:

https://developer.atlassian.com/display/DOCS/REST+Plugin+Module

以下是 answers.atalssianc.com 上的相关通信票。 https://answers.atlassian.com/questions/156650/development-in-jira-plugin-how-to-use-rest-api-in-velocity-template-through-json

谢谢达瓦尔索尼

于 2013-04-15T10:43:14.297 回答