Tagged Questions
0
votes
1answer
34 views
Spring MVC: Applying different JSON serializer for different annotated controller method
I'm creating a REST service using annotated controllers and the content negotiation (@ResponceBody). I have two different controller methods returning instance of {{Foo}} that serves different use ...
0
votes
1answer
36 views
Can someone please tell me why I am getting HTTP Status 406 from Spring
Can someone please tell me why I am getting HTTP Status 406 from Spring? I am trying to make spring return some json code and I am getting back a 406 status..
Here is my controller code:
...
0
votes
2answers
38 views
Jackson bug (or feature!?) when using java.util.Set - mySet.size() is always 1
I am using Jackson 2.2.0 and Spring 3.2.0 with Hibernate 4.2.2.
I recently had to send an array of objects via POST to the server:
{"cancelationDate":"2013-06-05",
"positions":[
{"price":"EUR ...
1
vote
1answer
94 views
SpringMVC + Hibernate Tomcat 500, json no stack trace
I keep getting an error 500 from Tomcat when I return a list of entities from my service layer in Spring. If I just make the entities on the fly in memory I don't get the error and they return fine, ...
1
vote
0answers
36 views
Spring MVC/Jackson: how to ask Spring to validate the JSON object in the request body?
I'm using Spring MVC 3.2.3 + Jackson 2.1.4 for JSON serialization.
I would like to known if it's possible to ask Spring to validate the JSON object in the request body*, especially if a required ...
0
votes
0answers
74 views
How to serialize lazy loaded entities with jackson module hibernate?
I`m trying to build an application with angularjs and springmvc.I have two classes Province and Comunidad. :
@Entity(name="Provincia")
@Table(name="T_PROVINCIA")
public class Provincia implements ...
0
votes
0answers
38 views
Custom object mapper not load element from file.properties
I have make this class for custom date on jackson object mapper:
public class CustomObjectMapper extends ObjectMapper {
@Value("#{cfgproperties.dateformat}")
private String dateFormats;
public ...
0
votes
2answers
74 views
Spring MVC (or Jackson) overriding database entries, if payload contains id. How to solve?
we're building a REST-API using Spring MVC 3.2, Jackson 1.9.12, Hibernate 4.2.2.
Yesterday I needed to pass a small object graph to the API, which should get persisted in the database. It some kind ...
0
votes
1answer
82 views
Spring mvc error while binding date param
I'm having a weird problem with a Spring MVC.
I have a Controller method that accepts 2 date parameters as request parameters startDate and endDate.
If I use a simple url with the 2 params like so :
...
1
vote
1answer
277 views
JSON Mapping in my Spring MVC 3.2 Application Works for Only One of My Methods
I am working on a Spring 3.2 MVC application. It's setup fairly typically, but my problem is that I am getting a 406 status error when I attempt to return a JSON object from my controller methods.
...
0
votes
1answer
31 views
How should I set a Feature on a Spring Message Converter's Object Mapper?
I'm using a 3rd party REST API which is returning 'NaN' in it's JSON response :( I can't change the response.
I'm using Spring MVC with RestTemplate and the built in Message Converters to deserialize ...
3
votes
2answers
82 views
Can I control how spring controller method arguments are instantiated?
Consider the following interface/object hierarchy in a spring project:
public interface MyInterface {
//method defenitions
}
@Component
@Scope(SCOPE_PROTOTYPE)
public class MyClass implements ...
0
votes
2answers
245 views
How to convert ArrayList<String> to JSON object using Jackson in Spring @ResponseBody
Server layer will return a list of String value, like
{"Bob", "Charlotte", "Johnson", "David"...}
Now we need the List String to be a Json object to push to front end, like
[{id: "Bob"}, {id: ...
0
votes
2answers
155 views
Spring REST: HttpMediaTypeNotSupportedException: Content type 'application/json;charset=UTF-8'
I am getting the above error, due to a problem with Jackson attempting to deserialize my POJO.
I've debugged the code and it returns false within Jackson's ObjectMapper:
public boolean canRead(Type ...
0
votes
0answers
71 views
Spring 406 not acceptable request from ajax
i am getting 406 not acceptable and eating up all my time. I tried a lot, but it not getting solved please help me.
ajax
$('#cls').autocomplete({
source: function(request, response) {
...
1
vote
0answers
152 views
How to enable @JsonRootName in spring mvc 3.2
I'm using Spring 3.2 and my Spring MVC controller generate JSON data (with jackson-databind-2.2.0). I would like to customize my JSON root name with @JsonRootName ...
0
votes
0answers
32 views
Load data from file.properties in MycustomObjectMapper
I want change date format from Json of Jackson and i have make this;
my servlet.xml contains:
....<mvc:resources mapping="/resources/**" location="/resources/" />
<util:properties ...
0
votes
1answer
68 views
Sending input as json and receiving the ouput as json using java HttpURLConnection and Spring MVC Controller
I want to send the input as json using the HttpURLConnection in java client and the request will be handled by the Spring MVC library jacksonhaus to reponse the output as json
`URL url = new ...
0
votes
1answer
133 views
Spring Roo OneToMany relationship not showing in JSON
I am trying to get a OneToMany relationship using Hibernate, roo, and JSON.
I was able to see the children of the parent via the jspx page by adding
<field:display field="children" ...
1
vote
1answer
193 views
How to parse json data into different object dynamically by using Jackson in Spring3 MVC project
I want to know if there is a way to parse json data dynamically into different object by using jackson feature in Spring3.
I have a parent class as below:
public class Recording {
private String ...
0
votes
1answer
22 views
Spring request bind and hibernate presist
For Spring MVC application as ORM jpa with hibernate was configured. Every request will be in usual form submit and response will be json so configured Jackson Json and used @ResponseBody . Everything ...
0
votes
1answer
60 views
jackson-mapper version 1.9.12 EnumDeserializer issue
i am trying to map String to enum Object using Jackson ObjectMapper.readValue(String,Class) API, problem is Lets SAY my json string contains a Task Object with Action enum as below
public enum Action ...
2
votes
1answer
196 views
Jackson @JsonView doesn't works as expected
I'm using Jackson JSON 1.9.12 with SpringMVC. I've created a dto with JSON fields. I want two profiles of same dto with different JSON fields, so I created two interfaces and I've annotated fields ...
0
votes
1answer
115 views
Spring mvc parse object using jackson?
My bean class ,
import java.util.LinkedList;
public class Information {
private LinkedList<String> information ;
public LinkedList<String> getInformation() {
return ...
2
votes
2answers
358 views
Return literal JSON strings in spring mvc @ResponseBody
I am storing objects in my database as JSON strings. I want to make a REST service that exposes these strings. When I write my methods however, the strings I get back have their quotes escaped. For ...
0
votes
0answers
84 views
JsonMappingException: Already had POJO for id
I have an error when trying to work with @JsonIdentityInfo jackson annotation. When I try to deserialize the object I get the folowing exception:
Could not read JSON: Already had POJO for id ...
0
votes
1answer
462 views
Have jackson ignore fields that are lazy initialized when serializing to json
I use Spring and am creating a REST service.
Here's a part of my controller:
@RequestMapping("/get")
public @ResponseBody Person getPerson() {
Person person = personRepository.findOne(1L);
...
0
votes
1answer
171 views
Invalid JSON content generated by Spring Controller (using Jackson library)
For some reason unknown to me, when making a request to my Spring controller it is returning an invalid JSON value. I'm using Jackson to map my JSON object. This is the data being returned when I make ...
0
votes
1answer
107 views
Spring-MVC, InheritanceType.JOINED, and automatic mapping of JSON objects to entities with Jackson
We're trying to write an API that creates elements of different types. The elements have a JPA entity representation. The following code shows how our basic element structure looks like (simplified):
...
0
votes
0answers
310 views
Spring MVC JSON - POST Mapping perfect untill…then 415 Unsupported Media
I have a controller method that looks like this:
@RequestMapping(value = "{userId}", method = RequestMethod.POST)
public @ResponseBody Map save(
@PathVariable Long userId,@RequestBody MealPlan ...
0
votes
1answer
460 views
HTML escape with Spring MVC and Jackson Mapper
I am going to escape HTML in Spring MVC with Jackson Mapper to avoid XSS attack.
I search for escaping with Jackson alone and how to config Jackson in Spring.
I tried export json with text like "<" ...
0
votes
0answers
448 views
Parsing JSON list of Strings in Spring MVC using Jackson JSON
Hi I am passing JSON List of strings and other fields as below:
{
"foo" : ["abc","one","two","three"],
"bar" : "true",
"baz" : "1"
}
And in java side I have Object which represents this ...
0
votes
2answers
234 views
Serializing TreeModel using jackson
I have the following model:
public class CategoryModel {
public String id;
public String name;
public String imageUrl;
public CategoryModel parent;
public ...
0
votes
0answers
73 views
Spring MVC Views and hibernate associations deep fetching
I have an spring MVC 3 application, and i used MarshallingView and MappingJacksonJsonView to render model objects, also i used hibernate 4 for persistence. The problem is after hibernate retrieves a ...
0
votes
1answer
179 views
Deserialize Jackson object with Javascript/jQuery
I recently have used Jackson combined with Spring MVC for serializing domain objects.
In order to reduce ciclyc references I have used @JsonIdentityInfo like this:
...
0
votes
1answer
165 views
Dynamic JSON type with Jackson in MVC REST API
The scenario
I am required to build an API that provides clients access to several kinds of object stored in a DB (my DAO is Hibernate-based as of today). These can be GETted or POSTed.
Currently ...
1
vote
0answers
61 views
Can not get param from json request when using spring aop
I am using spring AOP to check permission
@Component
@Aspect
public class PermissionManager {
@Around(value = "@annotation(requiredPermission) && args(id,..)", argNames = ...
2
votes
2answers
702 views
Spring Ajax - @ResponseBody - Returning null response
In my spring webapp, I have an ajax servlet that answer json (using jackson):
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans" ...
0
votes
0answers
80 views
How to get JSON for interface type by Spring MVC and Jackson
I developed some model class like this.
public class DTO1 {
protected Interface1 interface1;
protected List<DTO2> dto2 = new ArrayList<DTO2>();
}
public class DTO2 {
...
0
votes
0answers
366 views
Spring 3.2, Jackson2 ObjectMapper configuration
I have a problem that can not be resolved on the configuration of ObjectMapper. I need to configure it to ignore those parameters that do not have my POJO...so easy but I configured a thousand ...
0
votes
1answer
244 views
Spring MVC, JsonSerializer and i18n
I'm using a custom JsonSerializer for generating the JSON response of a Spring MVC method.
One of the fields in the response is an enum, and I would like to return a localized description of its ...
0
votes
1answer
363 views
how to show Pretty Print JSON String in a JSP page
I want to show a JSON string in a JSP page. I am working with Spring MVC framework. Below is the code
String result = restTemplate.getForObject(url.toString(), String.class);
ObjectMapper mapper = ...
3
votes
1answer
1k views
Spring 3.2 and Jackson 2: add custom object mapper
I'm developing a REST webservice in spring MVC. I need to change how jackson 2 serialize mongodb objectids. I'm not sure of what to do because I found partial documentation for jackson 2, what I did ...
0
votes
1answer
138 views
JSON response customize the response content
I have implemented a spring mvc 3 code to obtain JSON response (with help of jackson mapper)
@RequestMapping(value = "/getallroles", method = RequestMethod.GET)
@ResponseBody
public ...
2
votes
2answers
382 views
Force Spring 3.1 to use Jackson 2 when Jackson 1 JARs on the classpath
I have a Spring MVC 3.1 app built with Maven and I want to use Jackson 2 for JSON serialization/deserialization. I am including Jackson 2.x dependencies explicitly in my pom.xml file, although my app ...
0
votes
2answers
353 views
Json deserialization issue in spring 3.2.0
I have a problem while deserializing array of objects using Spring 3.2.0 and Jackson 2.1.1.
When i hit a controller with array of objects it throws "Could not instantiate bean class. No default ...
0
votes
0answers
253 views
Spring 3.1.2 + Jackson 1.9.11 = JsonProperty
I have a class View which contains an id and a generatedId (for obfuscation).
Class View {
@JsonProperty("id")
private String generatedKey;
@JsonProperty("id")
public String getGeneratedKey() {
...
0
votes
1answer
317 views
Null pointer exception using jackson processor spring mvc 3.1
I have the below pojo which I'm trying to serialize and deserialize using spring support for jackson processor,Below is my POJO class
public class Contract {
String term;
private List<Payment> ...
1
vote
3answers
940 views
Jodatime/Spring MVC/Jackson | DateTime formatting issue
When I use the @ResponseData JodaTime is converted into it's full object state, even though I have a custom serializer in place.
Configuration:
Spring 3.1.2
Jackson 1.9.11
<dependency>
...
0
votes
0answers
175 views
Bad request with custom ObjectMapper and Spring in deserialization
I've a REST service build on Spring 3 with Jackson.
I've an API that accept a json object and it's failing for a bad request.
The weird thing is that if I try to accept the json object as a String ...


