--
You received this message because you are subscribed to the Google Groups "Angular and AngularJS discussion" group.
To unsubscribe from this group and stop receiving emails from it, send an email to angular+u...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/angular/f370a805-db73-4eee-b08a-8752a815635en%40googlegroups.com.
@CrossOrigin(origins = "http://localhost:8090")
This is kind of static intialization . if you want to make it dynamic use * in place of
http://localhost:8090
then it will be like
@CrossOrigin(origins = "*")
--