I have a Spring Boot Application. In the Application class I define my CORS mappings like this:
@Bean public WebMvcConfigurer corsConfigurer() { retu
Try to use
@CrossOrigin(origins = "")
in your controller.
@CrossOrigin
This works properly as wildcard.