Skip to content

Instantly share code, notes, and snippets.

@lholmquist
Created May 6, 2013 12:54
Show Gist options
  • Save lholmquist/5524919 to your computer and use it in GitHub Desktop.
Save lholmquist/5524919 to your computer and use it in GitHub Desktop.
@Produces
public CorsConfiguration demoConfig() {
    return CorsConfig.enableCorsSupport()
            .anyOrigin()
            .enableCookies()
            .maxAge(20)
            .enableAllRequestMethods()
            .validRequestHeaders("accept, content-type");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment