废话不多说直接进入正题
在pom文件中添加依赖项
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-security</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<exclusions>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
配置文件我用的是yml,由于spring-security会自动生成加密后的密码,这里我们在配置文件中手动设置用户名和密码
server:
port: 8080
spring:
application:
name: hello-spring-security
thymeleaf:
cache: false
security:
user:
name: mike
password: 123
如果没有设置登陆页面,它也帮你生成了一个简易的登陆页面,这样,我们只需要在controller层设置登陆成功后的响应页面。
在templates文件夹下新建一个success.html页面,代码如下
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<h1>hello spring security!</h1>
</body>
</html>
controller层代码
@Controller
@RequestMapping("/auth")
public class LoginController {
@GetMapping("/login")
public String success(){
return "success";
}
}
接下来我们就可以测试一下了
在浏览器输入http://localhost:8080/auth/login,就会出现如下界面
输入用户名mike,密码123,就能进入成功页面了