JPA JAXRS JSON Binding deserialization error
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
add a comment |
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
add a comment |
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
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
json rest java-ee jackson dto
edited Nov 21 '18 at 18:35
Billy Frost
1,799198
1,799198
asked Nov 21 '18 at 16:58
FelixFelix
267
267
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
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
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
add a comment |
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
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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
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
add a comment |
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
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
add a comment |
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
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
answered Nov 22 '18 at 18:21
FelixFelix
267
267
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
add a comment |
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
add a comment |
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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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