我有以下问题。我有JAX-RS(Glassfisch 5)微服务,我编写了一个客户端来从微服务中检索数据。

一切正常,直到将客户端移到Java EE Web应用程序项目(前端)中。

例外:https://pastebin.com/vmf0pyTw

GenericClient:https://pastebin.com/MwUjTyx5

UserStoryClient扩展了GenericClient:



@RequestScoped
@Named
public class UserStoryClient extends GenericClient<UserStory>{
    public UserStoryClient() {
        super(Consts.USERSTORY_RESOURCEURI, new GenericType<UserStory>(){}, new GenericType<List<UserStory>>(){});
    }

    public Optional<List<UserStory>> getByUserId(int id) {
        Response response = this.getResourceWebTarget()
                .path(Consts.USER_RESOURCEURI)
                .path(String.valueOf(id))
                .request(MediaType.APPLICATION_JSON)
                .get(Response.class);
        return this.retrieveEntityList(response);
    }
}







@RequestScoped
@Named
@Getter @Setter
public class IssueCreateBoundary implements Serializable {
    UserStory userStory = new UserStory();
    @Inject UserStoryClient userStoryGroup;
    private Integer priorityRating;
    private Integer riskRating;

    public void submitIssue(){
        if(priorityRating != null)   userStory.setPriority(priorityRating.byteValue());
        if(riskRating != null) userStory.setRisk(riskRating.byteValue());

        Optional<UserStory> resp = this.userStoryGroup.create(userStory);
    }
}





Pom.xml:https://pastebin.com/1kZxNCKQ

当我在测试包中调用客户端时,一切工作正常。

最佳答案

我通过更改JSON解析器并将JsonFormat(..)添加到我所有的Date来解决了这个问题

10-07 19:00
查看更多