Tagged Questions
0
votes
0answers
26 views
When using jersey jax-rs, is there a way to differentiate between fields sent as null and fields not sent at all
I'm using Jersey JAX-RS with Jackson (for serialization/deserialization) to implement a set of REST services. When a caller performs an update operation (ex. a PUT), I've generally followed the ...
0
votes
0answers
24 views
Mixin annotation not getting honored when passed as a parameter
I have a third party class SpecialObject as:
public class SpecialObject {
private String name;
private Integer id;
private Date date;
public String getFoo() {return "foo";} //Outlier
...
0
votes
2answers
91 views
How to extract ObjectMapper from JAX-RS Client?
I am using Jersey JAX-RS client (version 2.0). I know it is using a Jackson ObjectMapper to generate and parse JSON. I want to use that same object to generate JSON for some java classes so that I can ...
0
votes
1answer
40 views
Passing date input when invoking via cxf jaxrs:client
Maybe this is really trivial, but somehow I have not been able to get around to finding why this doesn't work!
I have a service that is exposed via cxf's jaxrs:server directive
<jaxrs:server ...
2
votes
1answer
81 views
Mapping extra parameters with JAX-RS and Jackson
I'm working on a project that uses JAX-RS, Jackson, and JPA. The JAX-RS resources map incoming JSON directly to the POJO (JPA) that is to ultimately be persisted.
@POST
...
0
votes
0answers
14 views
Is that possible that MongoDB Jackson Mapper is asynchronous in some way?
I have inconsistent failures when running unit tests on my JAX-RS based application.
These are methods of the subs resource:
@DELETE
@Path("{boardId}")
@Consumes(MediaType.APPLICATION_JSON)
public ...
0
votes
1answer
55 views
Long string value in JSON
I'm writing a MessageBodyWriter for java.util.Properties.
@Override
public void writeTo(final Properties t, final Class<?> type,
final Type genericType, final Annotation[] ...
0
votes
0answers
55 views
Using @JsonView with Apache CXF
I need a hint how to use the powerful @JsonView Notation from Jackson at a specific method of my endpoint.
The example says: ObjectWriter w = objectMapper.writerWithView(SomeClass.class);
But using ...
0
votes
1answer
133 views
Resteasy PostProcessInterceptor after ResteasyJacksonProvider
We have a Resteasy webservice.
I use Jackson provider for JSON, both outgoing JSON in response and incoming JSON in request.
Is it possible to have a PostProcessInterceptor to be executed after ...
2
votes
2answers
132 views
Specific MessageBodyWriter for field
Say I have a data class in a JAX-RS 1 environment (RestEasy 2 with the Jackson provider) like this:
class Foo {
int id;
String name;
Bar bar;
...
}
with Bar being:
class Bar {
int ...
3
votes
2answers
131 views
Jackson and JAX-RS: type resolving abstract types based on @PathParam
Suppose Animal is an abstract class in my project, and I have a REST resource (on a JAX-RS server, using Jackson for (de)serialization) for a PUT to manipulate animals that are stored in my database. ...
0
votes
2answers
65 views
collections and jax-rs
Let's say I have a collection, /cars, which supports the usual operations, and I also have support for /cars/{id}.
What is the best-practice for returning only a limited "view" of the collection ...
0
votes
1answer
116 views
Unrecognized Property in fetching data from JSONObject in Jersey web service
I need to convert a certain JSON string to a Java object. I am using Jackson for JSON handling.
Here is my Java class-
public class RequestClass {
String email_id;
String password;
public String ...
0
votes
1answer
120 views
@FormParam case sensitivity in Java Jersey
I am using Java with Jersey 1.16.
Is the name of a @FormParam parameter case sensitive?
Can I somehow force it to be NON case sensitive? (hopefully in some global way).
2
votes
1answer
348 views
Jboss 7.1.1 - Jackson ContextResolver<ObjectMapper> works only on one deployment
I have two rest webapps I want to deploy on Jboss 7.1.1. server.
Rest requests in both apps produces and consumes Json. I use jackson provider to serialize and deserialize objects.
Now, I need ...
1
vote
2answers
73 views
No Wrapper Element when returning List
I'm using JAX-RS / JAXB and JPA to create an REST Webservice.
@GET
@Produces({ MediaType.APPLICATION_XML, MediaType.APPLICATION_JSON })
public List<MyObject> getList() {
...
1
vote
1answer
122 views
Using dynamic Jackson Mix-ins with Apache CXF
I am using Jackson as JSON provider with Apache CXF. I would like to use Jackson mix-ins to shape the structure of JSON returned by the REST controllers. The mix-ins would apply to domain objects ...
2
votes
1answer
268 views
Registering POJO Support or JSON Providers for JAX-RS programmatically
I am developing plugins for an application. The plugins are basically JAX-RS endpoints. They are packaged and deployed to the classpath of the application which runs a Jetty and registers them. ...
1
vote
0answers
170 views
Submitting multipart/form with JSON with Ext-JS to JAX-RS, How to set Content-Type?
I want to submit a form that has file attachment using Ext-JS to a JAX-RS service that is using Jackson to process the JSON.
The problem that i have is that the JSON data doesn't have a Content-Type ...
1
vote
1answer
77 views
Comsuming GeoJSON with JAX-RS
I want to be able to consume GeoJSON with a JAX-RS service that uses Jackson for JSON handling. I'm a little baffled by how to handle it correctly. The problem is that parts of GeoJSON can be an ...
2
votes
1answer
437 views
JAX-RS: How can I return my list of objects as JSON?
I looked at the documentation of Jackson, and it left me confused :(
My entity looks like
@Entity
@Table(name = "variable")
public class Variable {
@Id
@GeneratedValue(strategy = ...
0
votes
2answers
846 views
Jersey: Can not deserialize instance of ArrayList out of String
I have a json based REST Web Service implemented using:
Jetty, Jersey, Jersey-JSON using Jackson.
One of my methods receives a Person instance, which has a field of type List<String>.
i.e.:
...
4
votes
1answer
277 views
Jackson @JsonSerialize ignored in Jboss 7.1.1 if maven dependecy set to provided
I have Jax-rs endpoint deployed in WAR archive on JBoss 7.1.1.
In its JSON response I don't want my null field name to be included, so I put @JsonSerialize on it.
class MyResponse {
private Long ...
0
votes
1answer
468 views
jax-rs map query parameter object
I'm using jersey 1.2 with jersey-server, jersey-json and jersey-spring to create REST services.
One of my service
@Path("test")
public class TestViewRestController {
@GET
@Path("t1")
...
0
votes
0answers
80 views
Locale change in REST service using CXF and Jackson
Tools
Spring, CXF, Jackson, Java
I am using custom Jackson serializers for formatting the JSON output. I would like to change the format based on the locale. Since this is an API, the locale could ...
1
vote
2answers
276 views
How to use multiple JSON providers with CXF, Spring and Jackson
Requirement
I am building a REST API. It has two REST calls. The call /format to output formatted JSON based on the parameters provided. The call /raw with same parameters should output JSON with raw ...
6
votes
2answers
976 views
JAXB annotated POJO for JSON serialization in Jersey returns String for every field type
I am using Jersey to create a web service for a server component. Unfortunately I have a problem with the formatting of my JSON response, because the data is always formatted as string.
I have a ...
2
votes
0answers
167 views
Use EntityManager with JAX-RS and Jackson in a custom deserializer
I have data for a customer formated in JSON :
{
"name":"My Name",
"company":{
"id":9
}
}
My entity looks like :
@Entity
public class Customer {
@Id
Integer id;
...
0
votes
1answer
211 views
Jackson's JsonNode with JAX-RS
I'm writing a JAX-RS web service that returns JSON back to the client, and I'm trying to use the org.codehaus.jackson libraries for dealing with JSON objects. The problem I'm having is that my ...
1
vote
1answer
161 views
How to enable strict type parsing for jackson?
Jackson 1.9.9 is somewhat inconsistent in what it parses into scalar values (bool, int, string). Any array or object type fails but you can put any scalar type into a string. For bool 0 and not 0 are ...
1
vote
1answer
317 views
Filter every JAX-RS resources of an application with a single JsonView
Jackson 2.0 allows to filter JAX-RS resources with a @JsonView.
The following example shows a way to ignore people's age in a resource response.
Unfortunately, every JAX-RS method has to be annotated ...
0
votes
1answer
2k views
com.fasterxml.jackson.core.JsonParseException: Unexpected character
I'm building REST API with Java (JAX-RS) using Jersey and I use Jackson as a JSON processor. While I try to post json data to the service I get the following error:
Sep 17, 2012 9:43:35 PM ...
1
vote
4answers
1k views
Unable to find a MessageBodyReader of content-type application/json and type class java.lang.String
I am using RestEasy client with jackson providers and getting the above error
clientside code is:
ClientRequest request = new ClientRequest(url);
request.accept(MediaType.APPLICATION_JSON);
...
0
votes
2answers
1k views
How to return image as stream from JAX-RS?
I'm trying to return an image in a JAX-RS web service. I was able to get this successfully working by returning FileInputStream but I'd prefer to avoid creating a File for each request.
I am using ...
0
votes
0answers
286 views
Jackson as a provider on TomEE+ throws an exception
I'm hitting a brick wall trying to get Jackson set up to render on TomEE+. For api-1.0.war, I've tried putting the jackson jars:
$CATALINA_BASE/webapps/api-1.0/WEB-INF/lib
...
1
vote
1answer
143 views
Where MongoDB ensureIndex() must be called in JAX-RS/MongoDB/Jackson application?
I'm following this example for creating a simple Web application using JAX-RS, MongoDB and Jackson mapper. Where should I call MongoDB's ensureIndex() if I'd like to have some fields indexed?
Thanks,
...
2
votes
2answers
3k views
JAX-RS Jackson Json Provider Date Format Issue
WRT to the following question:
Jersey + Jackson JSON date serialization format problem - how to change the format or use custom JacksonJsonProvider.
I wish to know
Is Jackson specifying that the ...
0
votes
1answer
2k views
How to Deserialize JSON Array?
I'm using Jackson within CXF to serialize/deserialize data. Unfortunately, I am having difficulty configuring CXF/Jackson to deserialize a JSON array. I'd appreciate help in resolving the issue.
Up ...
2
votes
1answer
302 views
Jackson JSON from a list, help formatting the JSON
I have the following class....
@XmlType
@XmlRootElement(name = "milestones")
@XmlAccessorType(XmlAccessType.FIELD)
public static class Circle {
public String type = "circle";
public double ...
2
votes
2answers
5k views
JAX-RS Jersey Client marshaling JSON response with POJO MAPPING & Jackson
I'm having a bit of an issue using Jersey client (1.11) with JSONConfiguration.FEATURE_POJO_MAPPING set to true. My test code looks like this:
MyFooCollectionWrapper<MyFooDTO> resp = ...
4
votes
2answers
1k views
Applying different Jackson filter for different Jersey REST service calls
I am using Jersey to implement JAX-RS REST-style services along with Jackson 2.0.2 for the JSON mapping. One of these REST services returns a List<EntityA> (let's call it indexA) where EntityA ...
6
votes
1answer
358 views
Jersey & Jackson - Resource modifying Jackson output
I'm currently using Jersey & Jackson for creating REST service. Right now when a Resource method produces application/json and is returned a POJO, it properly serializes the object into JSON and ...
2
votes
2answers
2k views
ajax call to jax-rs with jquery issue
I'm trying to call a Webservice that consumes a json object with post method .I did it then It wont work again don't know what is the problem.
here is my method
@POST
@Path("/post")
...
0
votes
2answers
341 views
test web-services with netbeans
I'm new to webservices and i want to know what i'm doing wrong here's my code to get all my listCustomers
@Path("/allCustomers")
@GET
@Produces("application/xml")
public List<Customer> ...
4
votes
3answers
2k views
How to pass raw JSON via Jackson?
We have a whole set of JAX-RS REST services running on top of Apache CXF and Jackson.
We use JAXB annotations to take care of marshalling POJOs to JSON, works great.
However, we have one or two ...
0
votes
1answer
1k views
Jax-rs json pretty output
in Java when i use the
@Produces("application/json")
annotation the output is not formated into human readable form. How do i achive that?
2
votes
1answer
459 views
Forcing JSON JAXB to ignore 'type' properties for polymorphic types with Jersey
I am using an abstract class to localize my models to different languages. This is the inheritance chain that I have set up:
//Base model, contains localized fields
public class Restaurant extends ...
4
votes
2answers
2k views
GlassFish JAX-RS Jackson custom JSON serialization
I have a JAX-RS resource and I'd like to use a custom JSON serializer for java.util.Calendar attribute using the @JsonSerialize(using=MySerializer.class).
import java.util.Calendar;
import ...
1
vote
1answer
382 views
How to close an entitymanager when used with Jackson and Jax-rs
I am using JPA (hibernate), JAX-RS (Jersey) and Jackson.
How can I close my entity manager after my packet is built and sent?
The following does not work and gives me an error. It appears to be ...
2
votes
1answer
298 views
Override default Jackson provider in jboss server
I'm trying to customize the behavior for the default Jackson provider. I wrote the following code and put it in the war package, but it does not work. I'm using JBoss version 7.1.1.Final.
...
