org.springframework.web.HttpMediaTypeNotSupportedException Content type ‘ap

错误描述:

 

无法接受前端发送的json字符串,后端无法打印信息。

错误代码:

@Configuration
@ComponentScan("com.woniu.controller")

public class SpringMvcConfig {



}

错误原因:

配置类中没有写@EnableWebMvc注解,springmvc无法进行类型转化。

修改后的代码:

@Configuration
@ComponentScan("com.woniu.controller")
@EnableWebMvc
public class SpringMvcConfig {



}

可以正常运行:
org.springframework.web.HttpMediaTypeNotSupportedException Content type ‘ap_第1张图片

你可能感兴趣的:(Spring,java,intellij-idea,开发语言)