SpringBoot Security
Less than 1 minute
Hướng dẫn nhanh và an toàn với SpringBoot
Bắt đầu nhanh
(1) Thêm phụ thuộc
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-security</artifactId>
</dependency>
(2) Thêm cấu hình
spring.security.user.name = root
spring.security.user.password = root
spring.security.user.roles = USER
(3) Sau khi khởi động ứng dụng, khi truy cập bất kỳ đường dẫn nào, bạn sẽ thấy trang dưới đây, nhắc bạn thực hiện thao tác đăng nhập trước. Nhập tên người dùng và mật khẩu đã cấu hình (root/root) để truy cập trang ứng dụng.