【问题标题】:Jax RS Client calling Microservices -> javax.ws.rs.ProcessingException: wrong number of argumentsJax RS 客户端调用微服务-> javax.ws.rs.ProcessingException:参数数量错误
【发布时间】:2018-06-25 18:50:40
【问题描述】:

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

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

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

通用客户端: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

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

【问题讨论】:

    标签: java jakarta-ee jersey jax-rs


    【解决方案1】:

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

    【讨论】:

      猜你喜欢
      • 2013-06-03
      • 2015-02-03
      • 1970-01-01
      • 1970-01-01
      • 2023-04-04
      • 2015-10-03
      • 1970-01-01
      • 2016-12-06
      • 2013-06-26
      相关资源
      最近更新 更多