The server supports cross-origin and cross-origin on the server.

Source: Internet
Author: User

The server supports cross-origin and cross-origin on the server.

Use spring MVC for compiling on the server side
Use filter

public class SimpleCORSFilter implements Filter{    @Override    public void destroy() {    }    @Override    public void doFilter(ServletRequest req, ServletResponse res,            FilterChain chain) throws IOException, ServletException {            HttpServletResponse response = (HttpServletResponse) res;            response.setHeader("Access-Control-Allow-Origin", "*");            response.setHeader("Access-Control-Allow-Methods", "POST, GET, OPTIONS, DELETE");            response.setHeader("Access-Control-Max-Age", "3600");            response.setHeader("Access-Control-Allow-Headers", "x-requested-with");            chain.doFilter(req, res);    }    @Override    public void init(FilterConfig arg0) throws ServletException {    }}

Add the following in web. xml:

<filter>      <filter-name>cors</filter-name>      <filter-class>com.web.filter.SimpleCORSFilter</filter-class>    </filter>    <filter-mapping>      <filter-name>cors</filter-name>      <url-pattern>/*</url-pattern>    </filter-mapping>

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

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.