1仁讨、在pom.xml中添加如下配置,引入對Spring Security的依賴粒督。
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-security</artifactId>
</dependency>
2陪竿、創(chuàng)建Spring Security的配置類 WebSecurityConfig ,具體如下:
package www.jiutouxiang.config;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.annotation.Configuration;
import org.springframework.security.config.annotation.authentication.builders.AuthenticationManagerBuilder;
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;
/**
* Spring Security的配置類 WebSecurityConfig
* 通過 @EnableWebMvcSecurity 注解開啟Spring Security的功能
* 繼承 WebSecurityConfigurerAdapter 屠橄,并重寫它的方法來設置一些web安全的細節(jié)
* configure(HttpSecurity http) 方法
* 通過 authorizeRequests() 定義哪些URL需要被保護族跛、哪些不需要被保護。
* 例如以上代碼指定了 / 和 /home 不需要任何認證就可以訪問锐墙,其他的路徑都必須通過身份驗證礁哄。
* 通過 formLogin() 定義當需要用戶登錄時候,轉到的登錄頁面溪北。
* configureGlobal(AuthenticationManagerBuilder auth) 方法桐绒,
* 在內存中創(chuàng)建了一個用戶,該用戶的名稱為user之拨,密碼為password茉继,用戶角色為USER。新增登錄請求與頁面
* @author hasee
*
*/
@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");
}
}
3蚀乔、增加login映射
@Controller
public class HelloController {
// 省略之前的內容...
@RequestMapping("/login")
public String login() {
return "login";
}
}
4烁竭、創(chuàng)建登錄界面
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:th="http://www.thymeleaf.org"
xmlns:sec="http://www.thymeleaf.org/thymeleaf-extras-springsecurity3">
<head>
<title>Spring Security Example </title>
</head>
<body>
<div th:if="${param.error}">
用戶名或密碼錯
</div>
<div th:if="${param.logout}">
您已注銷成功
</div>
<form th:action="@{/login}" method="post">
<div><label> 用戶名 : <input type="text" name="username"/> </label></div>
<div><label> 密 碼 : <input type="password" name="password"/> </label></div>
<div><input type="submit" value="登錄"/></div>
</form>
</body>
</html>
5、退出
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org"
xmlns:sec="http://www.thymeleaf.org/thymeleaf-extras-springsecurity3">
<head>
<title>Hello World!</title>
</head>
<body>
<h1 th:inline="text">Hello [[${#httpServletRequest.remoteUser}]]!</h1>
<form th:action="@{/logout}" method="post">
<input type="submit" value="注銷"/>
</form>
</body>
</html>
最后編輯于 :
?著作權歸作者所有,轉載或內容合作請聯(lián)系作者