1
在我的項目中,我只是想允許oauth登錄。我的彈簧安全配置如下:春季安全只允許oauth登錄
@Override
protected void configure(HttpSecurity http) throws Exception {
http.authorizeRequests().antMatchers("/login.html", "/oauth/**", "/sign**").permitAll()
.anyRequest().authenticated()
.and()
.formLogin().disable()
.httpBasic().disable()[enter image description here][1]
.exceptionHandling().accessDeniedPage("/login.html")
.and()
.apply(new SpringSocialConfigurer());
}
問題是訪問被拒絕的頁面不工作。我想login.html的內容如下:
login.html
其實我有403頁如下:
403
如何解決這個問題呢?