I am using spring security in my spring boot rest app. Get requests are working fine but POST/PUT/DELETE request are giving \"403 Forbidden\". Below is my code snippet. UI i
Disable csrf in config
http.csrf().disable().cors().and().....