JPA JAXRS JSON Binding deserialization error











up vote
0
down vote

favorite












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




























    up vote
    0
    down vote

    favorite












    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


























      up vote
      0
      down vote

      favorite









      up vote
      0
      down vote

      favorite











      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 yesterday









      Billy Frost

      1,72788




      1,72788










      asked yesterday









      Felix

      266




      266
























          1 Answer
          1






          active

          oldest

          votes

















          up vote
          0
          down vote













          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





















            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',
            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








            up vote
            0
            down vote













            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

























              up vote
              0
              down vote













              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























                up vote
                0
                down vote










                up vote
                0
                down vote









                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 12 hours ago









                Felix

                266




                266






























                     

                    draft saved


                    draft discarded



















































                     


                    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







                    Popular posts from this blog

                    Trompette piccolo

                    Slow SSRS Report in dynamic grouping and multiple parameters

                    Simon Yates (cyclisme)