Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Json conversion #2

Open
hauter opened this issue Feb 28, 2016 · 1 comment
Open

Json conversion #2

hauter opened this issue Feb 28, 2016 · 1 comment

Comments

@hauter
Copy link

hauter commented Feb 28, 2016

I want to convert json to object, but I get 415 Unsupported Media Type

    @RequestMapping(value = "/", method = RequestMethod.POST)
    @ResponseBody
    public String showIndex(@RequestBody AAA aaa) {
        return "{}";
    }

How can I do that?

@hauter
Copy link
Author

hauter commented Feb 28, 2016

I solved this problem

@Configuration
@ComponentScan(basePackages = "eu.kielczewski.example")
public class AppConfig extends WebMvcConfigurerAdapter {

    @Override
    public void configureMessageConverters(List<HttpMessageConverter<?>> converters) {
        converters.add(new MappingJackson2HttpMessageConverter());
        super.configureMessageConverters(converters);
    }
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant