Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6134141
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T17:19:05+00:00 2026-05-23T17:19:05+00:00

I implemented a RESTful web service with Spring and am using Jackson JSON as

  • 0

I implemented a RESTful web service with Spring and am using Jackson JSON as the serializer / deserializer for JSON objects.

However I run into Error 415’s when the object that is to be deserialized contains a HashMap:

private Map<String, String> requestMap = new HashMap<String, String>();

If I remove this, everything works perfectly. Is this a known issue? Are there any fixes?

Thanks,
Sri

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T17:19:06+00:00Added an answer on May 23, 2026 at 5:19 pm

    Strictly speaking, Jackson serializes from Interface-type references just fine. The following demonstrates this point.

    import java.util.ArrayList;
    import java.util.HashMap;
    import java.util.List;
    import java.util.Map;
    
    import org.codehaus.jackson.map.ObjectMapper;
    
    public class Foo
    {
      public static void main(String[] args) throws Exception
      {
        ObjectMapper mapper = new ObjectMapper();
    
        Map<String, String> requestMap = new HashMap<String, String>();
        requestMap.put("one", "1");
        requestMap.put("two", "2");
    
        System.out.println(mapper.writeValueAsString(requestMap));
        // output: {"two":"2","one":"1"}
    
        List<UserPermission> userPermissions = new ArrayList<UserPermission>();
        userPermissions.add(new UserPermissionImpl("domain1"));
        userPermissions.add(new UserPermissionImpl("domain2"));
    
        System.out.println(mapper.writeValueAsString(userPermissions));
        // output: [{"scope":"domain1"},{"scope":"domain2"}]
    
        Container container = new ContainerImpl(requestMap, userPermissions);
    
        // From an Interface-type reference, where the implementation is an object with two Interface-type references:
        System.out.println(mapper.writeValueAsString(container));
        // {"requestMap":{"two":"2","one":"1"},"userPermissions":[{"scope":"domain1"},{"scope":"domain2"}]}
      }
    }
    
    interface UserPermission {}
    
    class UserPermissionImpl implements UserPermission
    {
      public String scope;
      UserPermissionImpl(String scope) { this.scope = scope; }
    }
    
    interface Container {}
    
    class ContainerImpl implements Container
    {
      public Map<String, String> requestMap;
      public List<UserPermission> userPermissions;
    
      ContainerImpl(Map<String, String> requestMap, List<UserPermission> userPermissions)
      { this.requestMap = requestMap; this.userPermissions = userPermissions; }
    }
    

    There’s some other problem in the system you’re using.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I've implemented a Spring RESTful web service. Using Jackson JSON for Object Mapping. I
I have Restful web-service implemented using Apache CXF. Since I am going to use
I've implemented a RESTful web service with Spring. The service responds in XML or
I try to implement using Spring 3.1.0.RELEASE + Hibernate to make RESTful web service
I have a RESTful web service and a rich client application using it. I
I'm using Apache CXF for my restful web services. I have a service defined
I have implemented a generic handler to work as a restful web service in
I want to implement spring security on a jersey Restful web service, both on
I have a Restful web service developed in Spring MVC which currently returns farmer
I writing a small restful web service using Zend_Framework. I want to support the

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.