I have the following ant matching pattern:
http
.authorizeRequests().antMatchers("/proxy.stream*")
.authenticated().and()
.formLogin()
.loginPage("/dashboard/login.html")
.usernameParameter("userName")
.passwordParameter("password")
.defaultSuccessUrl("/dashboard/index.html")
.permitAll();
http.authorizeRequests().anyRequest().permitAll();
It is not matching the following url because of the reserved character "?" in it. I wanna be able to match anything that comes after "proxy.stream".
https://example.com/proxy.stream?origin=https://example.com/turbine.stream?cluster
I have tried to url encode
part of the url, but that gives me 400 bad request error in the browser.
How do i tell spring to match my url?