spring配置错误Could not find acceptable representation

pring 报错,Could not find acceptable representation

使用spring mvc框架我们可以可以使用@ResponseBody注解,相应ajax请求并返回一个对象,如我们自定义的对象,或者一个List,但这需要我们在spring的配置文件中进行配置:

否则回报:org.springframework.web.HttpMediaTypeNotAcceptableException:Could not find acceptable representation 错误

 

下面是配置代码:


	
		
			
				
					
						
							
								text/html;charset=UTF-8
							
						
					
				
				
				
					
					
						
							application/json;charset=UTF-8
						
					
				
			
		
	

 

另外我们还需要注意对用到的jar进行引用,如果报 java.lang.NoClassDefFoundError: org/codehaus/jackson/JsonGenerationException

错误应该是缺少jackson相关的jar

你可能感兴趣的:(spring配置错误Could not find acceptable representation)