おそらくこの質問に答えるのは少し遅れますが、誰でも役に立つことがあります。
configure()
方法は、例えば、logout()
呼び出しが欠落していて:
http.authorizeRequests()
.anyRequest().fullyAuthenticated()
.and()
.httpBasic()
.and()
.logout() // This is missing and is important
.logoutRequestMatcher(new AntPathRequestMatcher("/logout"))
.logoutSuccessUrl("/login");
また、あなたがあなた自身のログインページを設定することができます。
http.authorizeRequests()
// this allows the root and resources to be available without logging in
.antMatchers("/", "/resources/**").permitAll()
// any other type of request will need the credentials
.anyRequest().authenticated()
.and()
// uses the custom login form
.formLogin()
.loginPage("/login")
.defaultSuccessUrl("/home") // redirect to home page
.failureUrl("/login?error") // redirect to error page
.permitAll()
.and()
// logout and redirect to login page
.logout()
.logoutRequestMatcher(new AntPathRequestMatcher("/logout"))
.logoutSuccessUrl("/login");
あなたは '.logoutを()'提供されていません。 ;例えば、 https://spring.io/guides/gs/securing-web/。どんなリクエストをしていますか? – jonrsharpe
実際に.logout()を追加しようとしました。私が見たいくつかの異なる例から、しかし効果がありません。ログアウトを有効にするために上記の例を変更することをどのようにお勧めしますか?私が作っているリクエストは、 "/ logout"へのGETリクエストです。 – simbro
うん、設定は間違いなく呼び出されている。私は ".logout.permitAll()"を追加しました。私はPOSTメソッドを使って "/ logout"と同じメッセージを試していて、ログアウトしませんでした。他の人はconfigureメソッドとして何を使用しますか? – simbro