Skip to content

Instantly share code, notes, and snippets.

@alefhsousa
Created May 10, 2017 16:47
Show Gist options
  • Save alefhsousa/dac742f76f20efe9009dcdd435624ae3 to your computer and use it in GitHub Desktop.
Save alefhsousa/dac742f76f20efe9009dcdd435624ae3 to your computer and use it in GitHub Desktop.
CorsAdapterSpring.java
@Configuration
public class CorsAdapter extends WebMvcConfigurerAdapter {
@Override
public void addCorsMappings(final CorsRegistry registry) {
registry.addMapping("/**");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment