JPA JAXRS JSON Binding deserialization error












0















I have a little problem with deserialization a JSON String over REST.
My Problem is that I always get an "JSON Binding deserialization error" back.
The JSON String when get called with Chrome will be displayed in a normal way like I want. But when I want to call the Method I get the Error.



Get-REST-Method



public void getFilm(int id) throws IOException {
Client client = ClientBuilder.newClient();
WebTarget webTarget = client.target("http://localhost:8080/sprint-3-
gruppe-1/api/actors/1");

Invocation.Builder invocationBuilder
= webTarget.request(MediaType.APPLICATION_JSON);

Response response = invocationBuilder.get();

ActorDTO temp = response.readEntity(ActorDTO.class);
}


RestAPI



@GET
@Produces(MediaType.APPLICATION_JSON)
@Path("/{id}")
public Response httpGetActor(@PathParam("id") int id) {
Actor temp = actorService.read(id);
if(temp == null) {
return Response.ok().entity("404 NOT FOUND").build();
} else {
return Response.ok().entity(new ActorDTO(temp)).build();
}
}


ActorDTO



public class ActorDTO {
private int actorId;
private String firstName;
private String lastName;
private Date lastUpdate;

private ActorDTO() {

}

public ActorDTO(Actor actor) {
this.actorId = actor.getActorId();
this.firstName = actor.getFirstName();
this.lastName = actor.getLastName();
this.lastUpdate = actor.getLastUpdate();
}
//getter & setters









share|improve this question





























    0















    I have a little problem with deserialization a JSON String over REST.
    My Problem is that I always get an "JSON Binding deserialization error" back.
    The JSON String when get called with Chrome will be displayed in a normal way like I want. But when I want to call the Method I get the Error.



    Get-REST-Method



    public void getFilm(int id) throws IOException {
    Client client = ClientBuilder.newClient();
    WebTarget webTarget = client.target("http://localhost:8080/sprint-3-
    gruppe-1/api/actors/1");

    Invocation.Builder invocationBuilder
    = webTarget.request(MediaType.APPLICATION_JSON);

    Response response = invocationBuilder.get();

    ActorDTO temp = response.readEntity(ActorDTO.class);
    }


    RestAPI



    @GET
    @Produces(MediaType.APPLICATION_JSON)
    @Path("/{id}")
    public Response httpGetActor(@PathParam("id") int id) {
    Actor temp = actorService.read(id);
    if(temp == null) {
    return Response.ok().entity("404 NOT FOUND").build();
    } else {
    return Response.ok().entity(new ActorDTO(temp)).build();
    }
    }


    ActorDTO



    public class ActorDTO {
    private int actorId;
    private String firstName;
    private String lastName;
    private Date lastUpdate;

    private ActorDTO() {

    }

    public ActorDTO(Actor actor) {
    this.actorId = actor.getActorId();
    this.firstName = actor.getFirstName();
    this.lastName = actor.getLastName();
    this.lastUpdate = actor.getLastUpdate();
    }
    //getter & setters









    share|improve this question



























      0












      0








      0








      I have a little problem with deserialization a JSON String over REST.
      My Problem is that I always get an "JSON Binding deserialization error" back.
      The JSON String when get called with Chrome will be displayed in a normal way like I want. But when I want to call the Method I get the Error.



      Get-REST-Method



      public void getFilm(int id) throws IOException {
      Client client = ClientBuilder.newClient();
      WebTarget webTarget = client.target("http://localhost:8080/sprint-3-
      gruppe-1/api/actors/1");

      Invocation.Builder invocationBuilder
      = webTarget.request(MediaType.APPLICATION_JSON);

      Response response = invocationBuilder.get();

      ActorDTO temp = response.readEntity(ActorDTO.class);
      }


      RestAPI



      @GET
      @Produces(MediaType.APPLICATION_JSON)
      @Path("/{id}")
      public Response httpGetActor(@PathParam("id") int id) {
      Actor temp = actorService.read(id);
      if(temp == null) {
      return Response.ok().entity("404 NOT FOUND").build();
      } else {
      return Response.ok().entity(new ActorDTO(temp)).build();
      }
      }


      ActorDTO



      public class ActorDTO {
      private int actorId;
      private String firstName;
      private String lastName;
      private Date lastUpdate;

      private ActorDTO() {

      }

      public ActorDTO(Actor actor) {
      this.actorId = actor.getActorId();
      this.firstName = actor.getFirstName();
      this.lastName = actor.getLastName();
      this.lastUpdate = actor.getLastUpdate();
      }
      //getter & setters









      share|improve this question
















      I have a little problem with deserialization a JSON String over REST.
      My Problem is that I always get an "JSON Binding deserialization error" back.
      The JSON String when get called with Chrome will be displayed in a normal way like I want. But when I want to call the Method I get the Error.



      Get-REST-Method



      public void getFilm(int id) throws IOException {
      Client client = ClientBuilder.newClient();
      WebTarget webTarget = client.target("http://localhost:8080/sprint-3-
      gruppe-1/api/actors/1");

      Invocation.Builder invocationBuilder
      = webTarget.request(MediaType.APPLICATION_JSON);

      Response response = invocationBuilder.get();

      ActorDTO temp = response.readEntity(ActorDTO.class);
      }


      RestAPI



      @GET
      @Produces(MediaType.APPLICATION_JSON)
      @Path("/{id}")
      public Response httpGetActor(@PathParam("id") int id) {
      Actor temp = actorService.read(id);
      if(temp == null) {
      return Response.ok().entity("404 NOT FOUND").build();
      } else {
      return Response.ok().entity(new ActorDTO(temp)).build();
      }
      }


      ActorDTO



      public class ActorDTO {
      private int actorId;
      private String firstName;
      private String lastName;
      private Date lastUpdate;

      private ActorDTO() {

      }

      public ActorDTO(Actor actor) {
      this.actorId = actor.getActorId();
      this.firstName = actor.getFirstName();
      this.lastName = actor.getLastName();
      this.lastUpdate = actor.getLastUpdate();
      }
      //getter & setters






      json rest java-ee jackson dto






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Nov 21 '18 at 18:35







      user3973283

















      asked Nov 21 '18 at 16:58









      FelixFelix

      317




      317
























          1 Answer
          1






          active

          oldest

          votes


















          0














          I fixed my Problem. As it seems Wildfly 14 has a Problem with "resteasy-json-binding-provider-3.6.1.Final.jar". To fix this Problem you have ignore it on loading.



          Here is the solution for it:
          https://developer.jboss.org/thread/278678






          share|improve this answer
























          • ignoring resteasy-json-binding-provider causes change of default json marshaller from new json-b (yasson) to old jackson. its not really solution

            – kret
            Nov 25 '18 at 20:40











          Your Answer






          StackExchange.ifUsing("editor", function () {
          StackExchange.using("externalEditor", function () {
          StackExchange.using("snippets", function () {
          StackExchange.snippets.init();
          });
          });
          }, "code-snippets");

          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "1"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });














          draft saved

          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53417105%2fjpa-jaxrs-json-binding-deserialization-error%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          0














          I fixed my Problem. As it seems Wildfly 14 has a Problem with "resteasy-json-binding-provider-3.6.1.Final.jar". To fix this Problem you have ignore it on loading.



          Here is the solution for it:
          https://developer.jboss.org/thread/278678






          share|improve this answer
























          • ignoring resteasy-json-binding-provider causes change of default json marshaller from new json-b (yasson) to old jackson. its not really solution

            – kret
            Nov 25 '18 at 20:40
















          0














          I fixed my Problem. As it seems Wildfly 14 has a Problem with "resteasy-json-binding-provider-3.6.1.Final.jar". To fix this Problem you have ignore it on loading.



          Here is the solution for it:
          https://developer.jboss.org/thread/278678






          share|improve this answer
























          • ignoring resteasy-json-binding-provider causes change of default json marshaller from new json-b (yasson) to old jackson. its not really solution

            – kret
            Nov 25 '18 at 20:40














          0












          0








          0







          I fixed my Problem. As it seems Wildfly 14 has a Problem with "resteasy-json-binding-provider-3.6.1.Final.jar". To fix this Problem you have ignore it on loading.



          Here is the solution for it:
          https://developer.jboss.org/thread/278678






          share|improve this answer













          I fixed my Problem. As it seems Wildfly 14 has a Problem with "resteasy-json-binding-provider-3.6.1.Final.jar". To fix this Problem you have ignore it on loading.



          Here is the solution for it:
          https://developer.jboss.org/thread/278678







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Nov 22 '18 at 18:21









          FelixFelix

          317




          317













          • ignoring resteasy-json-binding-provider causes change of default json marshaller from new json-b (yasson) to old jackson. its not really solution

            – kret
            Nov 25 '18 at 20:40



















          • ignoring resteasy-json-binding-provider causes change of default json marshaller from new json-b (yasson) to old jackson. its not really solution

            – kret
            Nov 25 '18 at 20:40

















          ignoring resteasy-json-binding-provider causes change of default json marshaller from new json-b (yasson) to old jackson. its not really solution

          – kret
          Nov 25 '18 at 20:40





          ignoring resteasy-json-binding-provider causes change of default json marshaller from new json-b (yasson) to old jackson. its not really solution

          – kret
          Nov 25 '18 at 20:40




















          draft saved

          draft discarded




















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53417105%2fjpa-jaxrs-json-binding-deserialization-error%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          這個網誌中的熱門文章

          Tangent Lines Diagram Along Smooth Curve

          Yusuf al-Mu'taman ibn Hud

          Zucchini