tomcat项目支持跨域访问

在web.xml中添加如下filter


  CorsFilter
  org.apache.catalina.filters.CorsFilter


  CorsFilter
  /*

具体配置参考CORS Filter

在Access-Control-Allow-Origin: * in tomcat中有答案说,对于tomcat6版本中通用的方法是需要添加


    com.thetransactioncompany
    cors-filter
    1.3.2

配置如下filter


    CORS
    com.thetransactioncompany.cors.CORSFilter

    
        cors.allowOrigin
        *
    
    
        cors.supportsCredentials
        false
    
    
        cors.supportedHeaders
        accept, authorization, origin
    
    
        cors.supportedMethods
        GET, POST, HEAD, OPTIONS
    




    CORS
    /*

你可能感兴趣的:(跨域,tomcat,java)