feat(jwt): implement JWT-based authentication system

This commit is contained in:
2025-11-29 12:00:30 +08:00
parent 894a1c5d07
commit de52e2816c
23 changed files with 540 additions and 8 deletions

View File

@@ -3,8 +3,13 @@ plugins {
}
dependencies {
// Spring Security
implementation("org.springframework.boot:spring-boot-starter-security")
// Test
testImplementation("org.springframework.boot:spring-boot-starter-test")
implementation(project(":weblog-module-common"))
implementation(project(":weblog-module-jwt"))
testImplementation("org.springframework.security:spring-security-test")
}