Désactivation du CORS lorsque le profile debug n'est pas activé pour éviter les requête CORS invalides sur le même origine.
This commit is contained in:
parent
54f3d244cc
commit
50c957576a
|
@ -141,8 +141,6 @@ class WebSecurityConfig(
|
|||
}
|
||||
|
||||
http
|
||||
.cors()
|
||||
.and()
|
||||
.headers().frameOptions().disable()
|
||||
.and()
|
||||
.csrf().disable()
|
||||
|
@ -170,7 +168,10 @@ class WebSecurityConfig(
|
|||
.antMatchers(HttpMethod.GET, "/api/employee/current").authenticated()
|
||||
.generateAuthorizations()
|
||||
} else {
|
||||
http.authorizeRequests()
|
||||
http
|
||||
.cors()
|
||||
.and()
|
||||
.authorizeRequests()
|
||||
.antMatchers("**").permitAll()
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue