您好,登錄后才能下訂單哦!
這篇文章主要介紹SpringSecurity跳轉頁面失敗怎么辦,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!
今天新建SpringBoot項目練手,第一次添加了Spring Security.成功啟動項目后發(fā)現與之前新建的項目有點不一樣,無論我怎么設置系統(tǒng)首頁,瀏覽器內打開的都是登陸界面
無論我怎么設置controller的跳轉路徑都不起作用,氣到撓頭?。?!
經過查閱各種資料發(fā)現可能是Spring Security權限控制的原因,于是著手配置控制權限。
新建SecurityConfig類進行權限配置,代碼如下:
import org.springframework.context.annotation.Bean;import org.springframework.security.config.annotation.web.builders.HttpSecurity;import org.springframework.security.config.annotation.web.configuration.EnableWebSecurity;import org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter;import org.springframework.security.crypto.password.NoOpPasswordEncoder;@EnableWebSecuritypublic class SecurityConfig extends WebSecurityConfigurerAdapter { @Override protected void configure(HttpSecurity http) throws Exception { //配置資源文件,其中/css/**、index可以任意訪問 http .authorizeRequests() .antMatchers("/css/**", "/index").permitAll(); }}
一些解釋:
authorizeRequests: 配置一些資源或者鏈接的權限認證 antMatchers:配置哪些資源或鏈接需要被認證 permitAll:設置完全允許訪問的資源或者鏈接
添加上述權限設置后index頁面可以正常訪問
以上是“SpringSecurity跳轉頁面失敗怎么辦”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業(yè)資訊頻道!
免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。