SpringMVC整合FastJson:用"最快的json转换工具"替换SpringMVC的默认json转换

转自:https://blog.csdn.net/cslucifer/article/details/78610515

一.环境说明

  • Windows 10 1709
  • Spring 4.3.12.RELEASE
  • FastJson 1.2.40
  • IDEA 2017.3
  • JDK 1.8.0_144

二.开始配置

在SpringmMVC的配置文件中加入如下代码 
(目前最新版的配置是这样,以前版本的配置方式貌似不行了)


        
        
            
            
            

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

    
    
        
        

        
            
                WriteNullListAsEmpty
                WriteDateUseDateFormat
                PrettyFormat
                WriteMapNullValue
                WriteNullStringAsEmpty
                WriteNullListAsEmpty
                DisableCircularReferenceDetect
            
        

    
    

 

你可能感兴趣的:(serialize,spring,mvc)