nathand
nathand
Aware of that. I've tried using _csrf.parameterName and _csrf.token. I'm getting null on all the following when applied to my form below. #{_csrf.parameterName} #{_csrf.token} #{_csrf.value} #{_csrf} #{csrf} #{csrf.token} ``` form(role="form",...
guess I'm really puzzled now. Must be something wrong with my security config. Not even a hello world authentication is working for me....
I'd say mines looks like a java equivalent.... I've tried: - with @EnableWebSecurity and @EnableWebMvcSecurity - with and without .csrf() call in the configure() I'm using just spring-boot-starter-security and the...
I don't know how much it matters anymore, but here was a solution that was given to me. ``` @Configuration public class MvcConfig extends WebMvcConfigurerAdapter { @Override public void addInterceptors(InterceptorRegistry...