对web.xml 的几点配置心得

阅读更多
参考
http://gceclub.sun.com.cn/staticcontent/html/sunone/app7/app7-dg-webapp/ch6/ch6-4.html
1.指定了自己的javaEncoding

       jsp
       org.apache.jasper.servlet.JspServlet
       
           fork
           false
       

               
           javaEncoding
           GB18030
       

       
           xpoweredBy
           true
       

       3
   


2.添加rar,iso等的mime-type映射
避免在浏览器里直接打开。

mht
text/x-mht


       rar
       application/octet-stream
   

   
       iso
       application/octet-stream
   

   
       ape
       application/octet-stream
   

   
       rmvb
       application/octet-stream
   

   
       ico
       image/x-icon
   


 
  doc  
application/msword  
 
 
  xls  
  application/vnd.ms-excel  
 
 
  ppt  
  application/vnd.ms-powerpoint  


3.对html静态页面设置编码


 htm
 text/html;charset=gb2312
 


 html
 text/html;charset=gb2312
 

 

Tags - web , xml , mime , mapping , jasper , encoding , 过滤 , java , jsp

你可能感兴趣的:(Web,XML,Servlet,Excel,JSP)