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
json rest java-ee jackson dto
add a comment |
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
json rest java-ee jackson dto
add a comment |
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
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 yesterday
Billy Frost
1,72788
1,72788
asked yesterday
Felix
266
266
add a comment |
add a comment |
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
add a comment |
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
add a comment |
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
add a comment |
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
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 12 hours ago
Felix
266
266
add a comment |
add a comment |
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