Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

This is the code that I want to implement

Function Foo(..,..){

        for (UserPictures userPicture : userPictures) {         
        ++objectId;
        out = new StringWriter();
        //  mapper.writeValue(out, objectId);
        mapper.writeValue(out, userPicture);

        activityDto = new ActivityDTO();
        Long timestamp = userPicture.getTimestamp();
        activityFeedsJSonString = out.toString();
        activityDto.setJsonString(activityFeedsJSonString);
        activityDto.setObjectType("snap");
        activityDto.setTimestamp(timestamp);
        activitydtoList.add(activityDto);

    }
     out =new StringWriter();    
     mapper.writeValue(out,list);
     String s=out.toString();
     System.out.println(s);
     WebUtils.writeJSONResponseMessage(response,s);
   }

it works perfectly to give the jason output. I needed to add an extra count for each activityDto object but I can't add objectId as a property to the activityDto object. So I tried the following

    mapper.writeValue(out, objectId);
    mapper.writeValue(out, userPicture);

but I am getting the following error

Nov 20, 2012 2:03:29 PM org.apache.catalina.core.StandardWrapperValve invoke
SEVERE: Servlet.service() for servlet spring threw exception
org.codehaus.jackson.map.JsonMappingException: Can not construct instance of  com.feofus.woomefeeduser.model.UserPictures, problem: no suitable creator method found
at [Source: java.io.StringReader@88b136; line: 1, column: 1]
at org.codehaus.jackson.map.JsonMappingException.from(JsonMappingException.java:160)
at org.codehaus.jackson.map.deser.StdDeserializationContext.instantiationException(StdDeserializationContext.java:214)
at org.codehaus.jackson.map.deser.BeanDeserializer.deserializeFromNumber(BeanDeserializer.java:534)
at org.codehaus.jackson.map.deser.BeanDeserializer.deserialize(BeanDeserializer.java:356)
at org.codehaus.jackson.map.ObjectMapper._readMapAndClose(ObjectMapper.java:1980)
at org.codehaus.jackson.map.ObjectMapper.readValue(ObjectMapper.java:1271)
at com.feofus.woomefeeduser.web.controller.ActivityController.getAllActivityFeeds(ActivityController.java:221)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at org.springframework.web.bind.annotation.support.HandlerMethodInvoker.invokeHandlerMethod(HandlerMethodInvoker.java:176)
at org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter.invokeHandlerMethod(AnnotationMethodHandlerAdapter.java:426)
at org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter.handle(AnnotationMethodHandlerAdapter.java:414)
at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:790)
at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:719)
at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:644)
at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:560)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:637)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:298)
at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859)
at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:588)
at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489)
at java.lang.Thread.run(Unknown Source)

I tried answers to the related questions in stack overflow but that didn't help me.

At last I tried another logic with adding a new class "SampleDTO"

  public class SampleDTO implements Serializable{

  private static final long serialVersionUID = 8806642270400425251L;
  private UserPictures userPictures;
  private Integer objectId;

  public SampleDTO(){}

  //  Getters
  public Integer getObjectId() {
    return objectId;
  }

  public UserPictures getUserPictures() {
    return userPictures;
  }

  //  Setters
  public void setObjectId(Integer objectId) {
    this.objectId = objectId;
  }

  public void setUserPictures(UserPictures userPictures) {
    this.userPictures = userPictures;
  }
}

and changed the code to the following

         ++objectId;
         out = new StringWriter();
         SampleDTO sample = new SampleDTO();
         sample.setObjectId(objectId);
         sample.setUserPictures(userPicture);
         mapper.writeValue(out, sample);

And the error getting was

Nov 20, 2012 2:17:43 PM org.apache.catalina.core.StandardWrapperValve invoke
SEVERE: Servlet.service() for servlet spring threw exception
org.codehaus.jackson.map.exc.UnrecognizedPropertyException: Unrecognized field "userPictures" (Class  com.feofus.woomefeeduser.model.UserPictures), not marked as ignorable
at [Source: java.io.StringReader@120ba3a; line: 1, column: 18] (through reference chain:
com.feofus.woomefeeduser.model.UserPictures["userPictures"])
at org.codehaus.jackson.map.exc.UnrecognizedPropertyException.from(UnrecognizedPropertyException.java:53)
at org.codehaus.jackson.map.deser.StdDeserializationContext.unknownFieldException(StdDeserializationContext.java:248)
at org.codehaus.jackson.map.deser.StdDeserializer.reportUnknownProperty(StdDeserializer.java:541)
at org.codehaus.jackson.map.deser.StdDeserializer.handleUnknownProperty(StdDeserializer.java:527)
at org.codehaus.jackson.map.deser.BeanDeserializer.handleUnknownProperty(BeanDeserializer.java:655)
at org.codehaus.jackson.map.deser.BeanDeserializer.deserializeFromObject(BeanDeserializer.java:503)
at org.codehaus.jackson.map.deser.BeanDeserializer.deserialize(BeanDeserializer.java:348)
at org.codehaus.jackson.map.ObjectMapper._readMapAndClose(ObjectMapper.java:1980)
at org.codehaus.jackson.map.ObjectMapper.readValue(ObjectMapper.java:1271)
at com.feofus.woomefeeduser.web.controller.ActivityController.getAllActivityFeeds(ActivityController.java:227)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at org.springframework.web.bind.annotation.support.HandlerMethodInvoker.invokeHandlerMethod(HandlerMethodInvoker.java:176)
at org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter.invokeHandlerMethod(AnnotationMethodHandlerAdapter.java:426)
at org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter.handle(AnnotationMethodHandlerAdapter.java:414)
at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:790)
at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:719)
at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:644)
at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:560)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:637)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:298)
at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859)
at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:588)
at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489)
at java.lang.Thread.run(Unknown Source)

And I tried the solutions found in stack overflow for the similar questions but not working.

Can anybody please suggest me a simple straight forward method do this simple thing ? it is a kind of urgent.

Thank you all.

EDIT:

 @Entity
 @Table(name="user_pics")
 @Cache(region = "com.feofus.woomefeeduser.model.UsePictures",usage=CacheConcurrencyStrategy.NONSTRICT_READ_WRITE)
 public class UserPictures implements Serializable {

 private static final long serialVersionUID = 2182468309712227600L;
 private Integer id;
 private User uid;
 private String url;
 private Integer flag;
 private String caption;
 private String brandId;
 private String store;
 private Long timestamp;

 public UserPictures(){}

 @Id
 @GeneratedValue(strategy = GenerationType.AUTO)
 @Column(name="id")
 public Integer getId() {
return id;
 }

 @Column(name="uid")
 public Long getUid() {
return uid;
 }

 @Column(name="url")
 public String getUrl() {
return url;
 }

 @Column(name="flag")
 public Integer getFlag() {
return flag;
 }

 @Column(name="caption")
 public String getCaption() {
return caption;
 }

 public void setId(Integer id) {
this.id = id;
 }

 public void setUid(Long uid) {
this.uid = uid;
 }

 public void setUrl(String url) {
this.url = url;
 }

 public void setFlag(Integer flag) {
this.flag = flag;
 }

 public void setCaption(String caption) {
this.caption = caption;
 }

 public Long getTimestamp() {
return timestamp;
 }

 public void setTimestamp(Long timestamp) {
this.timestamp = timestamp;
 }

 @OneToOne(fetch=FetchType.EAGER)
 @JoinColumn(name="uid")
 public User getUid() {
return uid;
 }

 public void setUid(User uid) {
this.uid = uid;
 }

 @Column(name="brandid")
 public String getBrandId() {
return brandId;
 }

 public void setBrandId(String brandId) {
this.brandId = brandId;
 }

 @Column(name="store")
 public String getStore() {
return store;
 }

 public void setStore(String store) {
this.store = store;
 }
}
share|improve this question
Can you also post the UserPictures class? – Zutty Nov 20 '12 at 9:14

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.