0

次のアリマッチングパターンがあります:

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();

予約文字「?」のため、次の URL と一致しません。初期化。「proxy.stream」の後に来るものすべてに一致できるようにしたい。

https://example.com/proxy.stream?origin=https://example.com/turbine.stream?cluster

URLエンコードしてみた

?origin= https://example.com/turbine.stream?cluster

URLの一部ですが、ブラウザで400の不正なリクエストエラーが発生します。

春に自分のURLと一致するように指示するにはどうすればよいですか?

4

0 に答える 0