解决struts2.1.6整合Spring乱码问题

转自http://biancheng.dnbcw.info/java/71138.html


用struts2.1.6整合Spring的时候,发现在提交中文到数据库的时候出现乱码。通过Debug发现,在提交到action的时候,便出现了乱码,终于找到问题所在。

这个是我以前没有解决的web.xml配置:

 
 
  struts2
  
   org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter
  

 


 
  struts2
  /*
 


 
  
   org.springframework.web.context.ContextLoaderListener
  

 

要想解决它,只需要在这里面配置一个就可以了,解决后我的配置是这样的:

 

    encodingFilter
  org.springframework.web.filter.CharacterEncodingFilter
    
            encoding  
            UTF-8  
       
  
 
   
        encodingFilter  
        /*  
 

 
 
  struts2
  
   org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter
  

 

 
  struts2
  /*
 


 
  
   org.springframework.web.context.ContextLoaderListener
  

 

哈哈,问题终于解决了,希望对大家有用!


你可能感兴趣的:(spring,struts2,struts,spring,filter,action,数据库)