ssm:接口返回JSONObject,HTTP Status 406

错误: org.springframework.web.HttpMediaTypeNotAcceptableException: Could not fin

   ssm:接口返回JSONObject,HTTP Status 406_第1张图片

 原来的配置文件:





class="org.springframework.http.converter.json.MappingJacksonHttpMessageConverter">


text/html;charset=UTF-8 






class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter">
 













   


        class="org.springframework.web.multipart.commons.CommonsMultipartResolver">  
       
         
       
         
       
         
   
 


结论:  添加  ,现在可以去掉AnnotationMethodHandlerAdapter 这个bean,因为  会自动配置。
             如果出现中文乱码, 添加编码格式。需要添加的配置如下:

 
  
  
  
  
text/plain;charset=UTF-8   
text/html;charset=UTF-8   
  
  
   
  
 

你可能感兴趣的:(406,ssm,springMVC)