我想在擴展WebSecurityConfigurerAdapter的類中使用Spring的安全的Java配置。我正在使用版本3.2.0.RELEASE。爲什麼.and()。httpBasic();不工作在WebSecurityConfigurerAdapter
在HttpSecurity.java類中有一個示例如下。
protected void configure(HttpSecurity http) throws Exception {
http
.authorizeRequests()
.antMatchers("/**").hasRole("USER").and()
.httpBasic();
}
當我嘗試在我的項目中使用這個確切的例子中,。而()方法不就可以了.httpBasic()方法返回一個對象。傳遞給configure()方法的HttpSecurity http對象具有.httpBasic()對象。
我想了解爲什麼這個規範的例子不起作用。這看起來很簡單,我已經看到遍佈整個網絡的代碼以相同的方式使用它。
我有錯誤的版本嗎?我看到有些人使用release candiate,但我認爲3.2.0.RELEASE版本是最新的(如此處列出http://projects.spring.io/spring-security/)。
謝謝,我雖然T I是失去我的腦海裏。 – Jazzepi