1

我已经使用 WSO2 MSF4J 创建了一个示例微服务。但我无法访问子资源(服务)。以下是我的服务课程。

消息资源 -

@Path("/messages")
@Consumes(MediaType.APPLICATION_JSON) 
@Produces(MediaType.APPLICATION_JSON) 
public class MessageResource {

    @Path("/{messageId}/comments")
    public CommentResource getCommentResource(){

        System.out.println("inside the getCommentResource method");
        return new CommentResource();
    }
}

评论资源 -

@Path("/") 
public class CommentResource {

    @GET
    @Path("/{commentId}")
    public String test2(@PathParam("messageId") long messageId, @PathParam("commentId") long commentId){

        System.out.println("method to return comment Id : " + commentId + " for message : " + messageId);
        return "method to return comment Id : " + commentId + " for message : " + messageId;
    }
}

我已使用以下 URI 来访问此服务。

获取:http://localhost:8080/messages/1/comments/5

但是我的 REST 客户端得到了以下结果。

404 Not Found

Problem accessing: /messages/1/comments/5. Reason: Not Found

请帮助解决这个问题。

4

1 回答 1

0

这是不支持的。MSF4J 并不声称 100% 兼容 JAXRS,但它是用于构建微服务的轻量级框架。我为此创建了 JIRA [1]。我们将在未来的版本中实现这一点。

[1] - https://wso2.org/jira/browse/WMS-83

于 2016-05-03T01:33:29.680 回答