murraco/spring-boot-jwt:README 來源編輯指南
根據 README、倉庫資料與授權整理 murraco/spring-boot-jwt 的安裝與核驗路徑。
專案定位
murraco/spring-boot-jwt 的 README 將專案描述為「JWT auth service using Spring Boot, Spring Security and MySQL」。本文只整理倉庫可直接核對的內容,不把 star、Fork 或宣傳語當成品質證明。README 在「Architecture overview」下寫到:This is a REST API using the access token + refresh token pattern. Signin returns a pair:。這說明的是專案邊界,不是已完成的生產驗證。
適用場景
從 README 的「Architecture overview」與相關條目,可以先判斷它是否處理你的實際問題:a long-lived refresh token , an opaque random string, stored server-side, used only to obtain a new access token.。若需求不同,不應只因專案熱度就採用。本文保留原始專案名、命令與元件名,方便回到一手來源核對。 README 另外列出一項可核對的資訊:a short-lived access token , a stateless JWT sent as Authorization: Bearer on every request;。這類原文條目可用來設計試跑步驟,但不能取代實際環境測試。
運作方式
README 將運作方式分散在「JWT flow in this project」等段落。可確認的線索包括:1. Obtain tokens: Send POST /users/signin with username and password (form or query params). The response is a JSON object with accessToken, refreshToken, tokenType and expiresIn. 2.。本文不把未寫出的架構、效能或安全邊界補成結論;真正的執行鏈仍要配合目錄、設定檔與版本標籤檢查。
安裝與第一次執行
第一次安裝應從 README 指出的入口開始。目前可核對的命令是: $ git clone https://github.com/<your-user>/spring-boot-jwt 如果倉庫沒有命令,本文不會自行編造步驟,而是建議先閱讀「Stack」,確認系統依賴、預設埠與首次初始化。
設定與日常使用
日常使用取決於專案文件。README 的「JWT flow in this project」段落提到:Core classes: JwtTokenFilter, JwtTokenProvider, RefreshTokenService, MyUserDetails, WebSecurityConfig (SecurityFilterChain), and OpenApiConfig (SpringDoc).。設定檔、環境變數、權限與資料目錄只在來源明確時才會記錄;沒有寫出的預設值,應在測試環境驗證並保留回滾副本。 同一部分也提到:Opaque, not a JWT. Refresh tokens are 256 bits from SecureRandom, Base64url-encoded. They carry no claims; their only meaning is the database row they point at, which is what makes them revocable.。