在Jira Plugin开发中,我在位置创建了一个休息资源类 - “[FOLDER] /Src/Main/JAVA/com.company.jira.plugin.REST/PlanIssuesRestResources”
现在,当我尝试在浏览器中访问以下网址时,
的http:// [主持人]:2990 / JIRA /休息/ AUTH / 1 / PlanIssuesRestResource
然后它在浏览器中显示以下错误消息:
<status-code>404</status-code>
<message>null for uri: http://localhost:2990/jira/rest/auth/1/PlanIssuesRestResource
</message>
</status>
My 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();
}
如何访问此网址?
由于
答案 0 :(得分:1)
如发现,
请点击以下链接,了解有关Rest资源网址构成的详细信息:
https://developer.atlassian.com/display/DOCS/REST+Plugin+Module
以下是在answer.atalssianc.com上的相关通讯票。 https://answers.atlassian.com/questions/156650/development-in-jira-plugin-how-to-use-rest-api-in-velocity-template-through-json
谢谢 Dhaval Soni