通過ajax訪問Tomcat伺服器web service介面時出現No 'Access-Control-Allow-Origin' header問題的解決辦法

來源:互聯網
上載者:User

標籤:

問題描述

通過ajax訪問Web伺服器(Tomcat7.0.42)中的json web service介面的時候,報以下跨域問題:

XMLHttpRequest cannot load http://localhost:8080/get-employees-by-name/name/admin. No ‘Access-Control-Allow-Origin‘ header is present on the requested resource. Origin ‘http://localhost:63342‘ is therefore not allowed access.

解決辦法

1、下載cors-filter-<version>.jar和java-property-utils-<version>.jar兩個jar檔案,並將其放在web伺服器的classpath路徑下,例如tomcat的lib。

cors-filter-2.4.jar java-property-utils-1.9.1.jar

2、在web.xml中添加CorsFilter過濾器

<filter>    <filter-name>CorsFilter</filter-name>    <filter-class>com.thetransactioncompany.cors.CORSFilter</filter-class></filter><filter-mapping>      <filter-name>CorsFilter</filter-name>      <url-pattern>/*</url-pattern></filter-mapping><filter>

3、重啟Web伺服器即可。

 

參考資料

1、http://stackoverflow.com/questions/17267023/tomcat-7-cors-filter

2、http://software.dzhuvinov.com/cors-filter-installation.html

通過ajax訪問Tomcat伺服器web service介面時出現No 'Access-Control-Allow-Origin' header問題的解決辦法

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.