Quarkus native和org.kohsuke:github-api-无法反序列化异常

时间:2020-05-05 10:54:19

标签: github-api quarkus

我正在使用Quarkus本机和org.kohsuke:github-api:1.111,当执行简单的Failed to deserialize时,我在本机模式下看到new GitHubBuilder().withOAuthToken(ghToken).build();异常。这可以在JVM模式下工作。

主要问题可能是org.kohsuke:github-api尚未准备好用于纯模式的事实。 我仍然想问是否有解决此问题的选项,也许是https://github.com/github-api/github-api/blob/master/src/main/java/org/kohsuke/github/GHMyself.java的一些杰克逊技巧(stacktrace包含Cannot构造org.kohsuke.github.GHMyself的实例(不存在任何创建者,例如默认构造))。

异常详细信息:

2020-05-05 10:47:06,891 ERROR [io.qua.ver.htt.run.QuarkusErrorHandler] (executor-thread-1) HTTP Request to /hello failed, error id: a71018e5-de46-43a0-a194-80bd0b477f3d-1: org.jboss.resteasy.spi.UnhandledException: org.kohsuke.github.HttpException: Server returned HTTP response code: 200, message: '200 OK' for URL: https://api.github.com/user
...
Caused by: java.io.IOException: Failed to deserialize {"login":"rsvoboda","id":925259,"node_id":"MDQ6VXNlcjkyNTI1OQ==","avatar_url":"https://avatars0.githubusercontent.com/u/925259?v=4","gravatar_id":"","url":"https://api.github.com/users/rsvoboda","html_url":"https://github.com/rsvoboda","followers_url":"https://api.github.com/users/rsvoboda/followers","following_url":"https://api.github.com/users/rsvoboda/following{/other_user}","gists_url":"https://api.github.com/users/rsvoboda/gists{/gist_id}","starred_url":"https://api.github.com/users/rsvoboda/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsvoboda/subscriptions","organizations_url":"https://api.github.com/users/rsvoboda/orgs","repos_url":"https://api.github.com/users/rsvoboda/repos","events_url":"https://api.github.com/users/rsvoboda/events{/privacy}","received_events_url":"https://api.github.com/users/rsvoboda/received_events","type":"User","site_admin":false,"name":"Rostislav Svoboda","company":"JBoss by Red Hat by IBM","blog":"https://twitter.com/r_svoboda","location":"Brno, Czech Republic","email":"rsvoboda@redhat.com","hireable":null,"bio":null,"public_repos":138,"public_gists":3,"followers":18,"following":2,"created_at":"2011-07-19T12:18:08Z","updated_at":"2020-04-29T14:38:31Z"}
    at org.kohsuke.github.GitHubResponse.parseBody(GitHubResponse.java:87)
    at org.kohsuke.github.GitHubClient.lambda$fetch$0(GitHubClient.java:146)
    at org.kohsuke.github.GitHubClient.createResponse(GitHubClient.java:404)
    at org.kohsuke.github.GitHubClient.sendRequest(GitHubClient.java:358)
    ... 37 more
Caused by: com.fasterxml.jackson.databind.exc.InvalidDefinitionException: Cannot construct instance of `org.kohsuke.github.GHMyself` (no Creators, like default construct, exist): cannot deserialize from Object value (no delegate- or property-based Creator)
 at [Source: (String)"{"login":"rsvoboda","id":925259,"node_id":"MDQ6VXNlcjkyNTI1OQ==","avatar_url":"https://avatars0.githubusercontent.com/u/925259?v=4","gravatar_id":"","url":"https://api.github.com/users/rsvoboda","html_url":"https://github.com/rsvoboda","followers_url":"https://api.github.com/users/rsvoboda/followers","following_url":"https://api.github.com/users/rsvoboda/following{/other_user}","gists_url":"https://api.github.com/users/rsvoboda/gists{/gist_id}","starred_url":"https://api.github.com/users/rsvobod"[truncated 734 chars]; line: 1, column: 2]
    at com.fasterxml.jackson.databind.DeserializationContext.reportBadDefinition(DeserializationContext.java:1592)
    at com.fasterxml.jackson.databind.DeserializationContext.handleMissingInstantiator(DeserializationContext.java:1058)
    at com.fasterxml.jackson.databind.deser.BeanDeserializerBase.deserializeFromObjectUsingNonDefault(BeanDeserializerBase.java:1297)
    at com.fasterxml.jackson.databind.deser.BeanDeserializer.deserializeFromObject(BeanDeserializer.java:326)
    at com.fasterxml.jackson.databind.deser.BeanDeserializer.deserialize(BeanDeserializer.java:159)
    at com.fasterxml.jackson.databind.ObjectReader._bindAndClose(ObjectReader.java:1719)
    at com.fasterxml.jackson.databind.ObjectReader.readValue(ObjectReader.java:1261)
    at org.kohsuke.github.GitHubResponse.parseBody(GitHubResponse.java:84)

复制者详细信息:

生成应用-https://quarkus.io/guides/getting-started#bootstrapping-the-project

为本地添加依赖项和quarkus.native.enable-https-url-handler属性

    <dependency>
      <groupId>org.kohsuke</groupId>
      <artifactId>github-api</artifactId>
      <version>1.111</version>
    </dependency>
    <dependency>
      <groupId>io.quarkus</groupId>
      <artifactId>quarkus-resteasy-jackson</artifactId>
    </dependency>
...
      <properties>
        <quarkus.package.type>native</quarkus.package.type>
        <quarkus.native.enable-https-url-handler>true</quarkus.native.enable-https-url-handler>
      </properties>

更改GreetingResource

        GitHub github = new GitHubBuilder().withOAuthToken(ghToken).build();
        GHRepository ghRepo = github.getRepository("quarkusio/quarkus");
        return ghRepo.toString();

从GreetingResourceTest中删除.body(is("hello"))

运行mvn clean verify -Dnative

3 个答案:

答案 0 :(得分:1)

我的猜测是,您将需要注册所有GHObject层次结构以使用ReflectiveHierarchyBuildItem进行反射。

因此需要扩展。对于平台恕我直言,这将是一个有用的补充。

答案 1 :(得分:1)

您还可以在任何课程上使用@RegisterForReflection(targets = GHObject.class)

答案 2 :(得分:0)

如果您在本机模式下运行并且收到错误是因为反射解决了用 @RegisterForReflection 注释您的类,还要在您的类中添加一个无参数构造函数,然后重建应用程序并运行您的错误将是已解决。

有关更多参考,请参阅 link

上的 quarkus 指南