We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I want to convert json to object, but I get 415 Unsupported Media Type
415 Unsupported Media Type
@RequestMapping(value = "/", method = RequestMethod.POST) @ResponseBody public String showIndex(@RequestBody AAA aaa) { return "{}"; }
How can I do that?
The text was updated successfully, but these errors were encountered:
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); } }
Sorry, something went wrong.
No branches or pull requests
I want to convert json to object, but I get
415 Unsupported Media Type
How can I do that?
The text was updated successfully, but these errors were encountered: