@Bean configuration to set the CORS configuration support globally to your Spring Boot application.
1.true
2.flase
Posted Date:-2020-11-25 08:24:33
@Bean public WebMvcConfigurer corsConfigurer() { return new WebMvcConfigurerAdapter() { @Override public void addCorsMappings(CorsRegistry registry) { registry.addMapping("/products").allowedOrigins("http://localhost:9000"); } }; }
1.Syntax to set the CORS configuration support globally to your Spring Boot application.
2.Syntax to set the CORS configuration support specific REST API .
3.Both
4.None
Posted Date:-2020-11-25 08:27:33
@CrossOrigin annotation supports specific REST API
1.true
2.false
Posted Date:-2020-11-25 08:09:42
@CrossOrigin annotation supports specific REST API, and not for the entire application.
1.Yes
2.No
Posted Date:-2020-11-25 08:21:31
Choose correct for CORS
1.CORS prevents the JavaScript code producing or consuming the requests against different origin
2.CORS is a security concept that allows restricting the resources implemented in web browsers.
3.Both
4.Only 1
Posted Date:-2020-11-25 07:46:57
CORS Configuration can be Globally?
1.Yes
2.No
Posted Date:-2020-11-25 08:23:44
CORS is a security concept that allows restricting the resources implemented in web browsers
1.true
2.flase
Posted Date:-2020-11-25 07:37:08
Enable CORS in Controller Method
1.@RequestMapping(value = "/products") @CrossOrigin(origins = "http://localhost:8080") public ResponseEntity
2.@RequestMapping(value = "/products") @CrossCORSOrigin(origins = "http://localhost:8080") public ResponseEntity
3.Both
4.None
Posted Date:-2020-11-25 08:22:46
Full name of CORS?
1.Cross-Origin Resource Sharing (CORS)
2.Cross-Origin Resource and Servers
3.Cross-Origin Resource and Services
4.None
Posted Date:-2020-11-25 07:36:34