Json异常-AJAX-406解析异常(spring-mvc中)

贴上异常

Failed to load resource: the server responded with a status of 406 ()

下面是我的WEB.XML文档



    springMVC01
    
        SpringMVC
        org.springframework.web.servlet.DispatcherServlet
        
        
            contextConfigLocation
            classpath:spring.xml
        
    
    
        SpringMVC
        *.html
    
    

一开始百思不得其解,后来弄明白了.
看我配置中
因为做伪装处理所以把后缀名后改成了html

*.html

导致了spring mvc会默认采用text/html来编码,因此出现Json格式出现异常

总结:只要把html改成其他的就可以正常获取Json字符串了

*.json

你可能感兴趣的:(Json异常-AJAX-406解析异常(spring-mvc中))