Spring MVC4设置使用fastjson作为json解析器,替代jackson

引用


不论是性能、易用性、特性支持,fastjson都要远好于默认的jackson,所以如果应用程序经常使用ajax进行数据交互,建议用fastjson作为默认解析器,官网:www.fhadmin.org只需要简单配置: 
 
   
      
       
       
       
         
           
          WriteMapNullValue 
           
          WriteDateUseDateFormat 
       
 
     
 
   
 
 
  
 
然后引入fastjson的包就好了。 

附Spring MVC4示例配置文件: 
 
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
    xmlns:context="http://www.springframework.org/schema/context" 
    xmlns:mvc="http://www.springframework.org/schema/mvc" 
    xsi:schemaLocation="http://www.springframework.org/schema/beans 
        http://www.springframework.org/schema/beans/spring-beans.xsd 
        http://www.springframework.org/schema/context 
        http://www.springframework.org/schema/context/spring-context-4.1.xsd 
        http://www.springframework.org/schema/mvc 
        http://www.springframework.org/schema/mvc/spring-mvc-4.1.xsd"> 

 
 

 
 
   
   
   
   
 

 
 
   
 

 
 
   
      
       
       
         
          WriteMapNullValue 
          WriteDateUseDateFormat 
       
 
     
 
   
 
 
  
 

 
 
   
 

 
 
   
   
 

 
 
   
     
     
     
     
     
     
     
    
 
 

 

你可能感兴趣的:(Spring MVC4设置使用fastjson作为json解析器,替代jackson)