企業分散式微服務雲SpringCloud SpringBoot mybatis (六)Spring Boot中使用Spring Security進行安全控制

allalongx發表於2018-02-09

準備工作

首先,構建一個簡單的Web工程,以用於後續新增安全控制,也可以用之前Chapter3-1-2做為基礎工程。若對如何使用Spring Boot構建Web應用,可以先閱讀《Spring Boot開發Web應用》一文。

Web層實現請求對映

@Controller public class HelloController {

@RequestMapping("/")
public String index() {
    return "index";
}

@RequestMapping("/hello")
public String hello() {
    return "hello";
}
複製程式碼

} /:對映到index.html /hello:對映到hello.html 實現對映的頁面

src/main/resources/templates/index.html

Spring Security入門

歡迎使用Spring Security!

點選 這裡 打個招呼吧

src/main/resources/templates/hello.html

Hello World!

Hello world!

可以看到在index.html中提供到/hello的連結,顯然在這裡沒有任何安全控制,所以點選連結後就可以直接跳轉到hello.html頁面。

整合Spring Security

在這一節,我們將對/hello頁面進行許可權控制,必須是授權使用者才能訪問。當沒有許可權的使用者訪問後,跳轉到登入頁面。

新增依賴

在pom.xml中新增如下配置,引入對Spring Security的依賴。

... org.springframework.boot spring-boot-starter-security ... Spring Security配置

建立Spring Security的配置類WebSecurityConfig,具體如下:

@Configuration @EnableWebSecurity public class WebSecurityConfig extends WebSecurityConfigurerAdapter {

@Override
protected void configure(HttpSecurity http) throws Exception {
    http
        .authorizeRequests()
            .antMatchers("/", "/home").permitAll()
            .anyRequest().authenticated()
            .and()
        .formLogin()
            .loginPage("/login")
            .permitAll()
            .and()
        .logout()
            .permitAll();
}

@Autowired
public void configureGlobal(AuthenticationManagerBuilder auth) throws Exception {
    auth
        .inMemoryAuthentication()
            .withUser("user").password("password").roles("USER");
}
複製程式碼

}

通過@EnableWebSecurity註解開啟Spring Security的功能 繼承WebSecurityConfigurerAdapter,並重寫它的方法來設定一些web安全的細節 configure(HttpSecurity http)方法 通過authorizeRequests()定義哪些URL需要被保護、哪些不需要被保護。例如以上程式碼指定了/和/home不需要任何認證就可以訪問,其他的路徑都必須通過身份驗證。 通過formLogin()定義當需要使用者登入時候,轉到的登入頁面。 configureGlobal(AuthenticationManagerBuilder auth)方法,在記憶體中建立了一個使用者,該使用者的名稱為user,密碼為password,使用者角色為USER。 新增登入請求與頁面

在完成了Spring Security配置之後,我們還缺少登入的相關內容。

HelloController中新增/login請求對映至login.html

@Controller public class HelloController {

// 省略之前的內容...

@RequestMapping("/login")
public String login() {
    return "login";
}
複製程式碼

} 新增登入頁面:src/main/resources/templates/login.html

Spring Security Example
使用者名稱或密碼錯
您已登出成功
可以看到,實現了一個簡單的通過使用者名稱和密碼提交到/login的登入方式。

根據配置,Spring Security提供了一個過濾器來攔截請求並驗證使用者身份。如果使用者身份認證失敗,頁面就重定向到/login?error,並且頁面中會展現相應的錯誤資訊。若使用者想要登出登入,可以通過訪問/login?logout請求,在完成登出之後,頁面展現相應的成功訊息。

到這裡,我們啟用應用,並訪問http://localhost:8080/,可以正常訪問。但是訪問http://localhost:8080/hello的時候被重定向到了http://localhost:8080/login頁面,因為沒有登入,使用者沒有訪問許可權,通過輸入使用者名稱user和密碼password進行登入後,跳轉到了Hello World頁面,再也通過訪問http://localhost:8080/login?logout,就可以完成登出操作。

為了讓整個過程更完成,我們可以修改hello.html,讓它輸出一些內容,並提供“登出”的連結。

Hello World!

Hello [[${#httpServletRequest.remoteUser}]]!

原始碼來源:http://minglisoft.cn/honghu/technology.html

企業分散式微服務雲SpringCloud SpringBoot mybatis (六)Spring Boot中使用Spring Security進行安全控制
本文通過一個最簡單的示例完成了對Web應用的安全控制,Spring Security提供的功能還遠不止於此,更多Spring Security的使用可參見Spring Security Reference。

相關文章