{"id":15896044,"url":"https://github.com/youkol/shiro-support","last_synced_at":"2026-05-09T04:32:52.137Z","repository":{"id":57729924,"uuid":"154556175","full_name":"youkol/shiro-support","owner":"youkol","description":"A simple shiro extension library.","archived":false,"fork":false,"pushed_at":"2024-03-15T14:26:15.000Z","size":123,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-07-27T13:46:31.597Z","etag":null,"topics":["jwt","shiro","shiro-support","spring","spring-boot"],"latest_commit_sha":null,"homepage":"https://github.com/youkol/shiro-support","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/youkol.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-10-24T19:19:23.000Z","updated_at":"2020-06-29T13:33:06.000Z","dependencies_parsed_at":"2024-10-28T04:03:42.151Z","dependency_job_id":"15aaedc7-efbf-46c4-b1c9-fb46708c9038","html_url":"https://github.com/youkol/shiro-support","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/youkol/shiro-support","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/youkol%2Fshiro-support","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/youkol%2Fshiro-support/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/youkol%2Fshiro-support/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/youkol%2Fshiro-support/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/youkol","download_url":"https://codeload.github.com/youkol/shiro-support/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/youkol%2Fshiro-support/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32807214,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-08T08:22:46.396Z","status":"online","status_checked_at":"2026-05-09T02:00:06.633Z","response_time":123,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["jwt","shiro","shiro-support","spring","spring-boot"],"created_at":"2024-10-06T09:05:30.887Z","updated_at":"2026-05-09T04:32:52.115Z","avatar_url":"https://github.com/youkol.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# shiro-support\n\n[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.youkol.support.shiro/shiro-support-parent/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.youkol.support.shiro/shiro-support-parent)\n[![Sonatype Nexus (Snapshots)](https://img.shields.io/nexus/s/com.youkol.support.shiro/shiro-support-parent?server=https%3A%2F%2Foss.sonatype.org)](https://oss.sonatype.org/content/repositories/snapshots/com/youkol/support/shiro/shiro-support-parent/)\n[![License](https://img.shields.io/badge/license-apache-brightgreen)](http://www.apache.org/licenses/LICENSE-2.0.html)\n\nA simple Shiro extension library.\n\n### 1. Add Supports\n* Spring cache-based implementations of Shiro's cache interfaces.\n* A simple username/password/captcha authentication token to support the most widely-used authentication mechanism.\n* Add JWT Support\n* Custom implementation inherited ModularRealmAuthenticator, and \n  store the last AuthenticationException for multi realm.\n  Fix when use multi realm, lost the AuthenticationException info. \n\n### 2. Usage\n```xml\n\u003cdependencies\u003e\n  ...\n  \u003cdependency\u003e\n    \u003cgroupId\u003ecom.youkol.support.shiro\u003c/groupId\u003e\n    \u003cartifactId\u003eshiro-support\u003c/artifactId\u003e\n    \u003cversion\u003e${shiro-support.version}\u003c/version\u003e\n  \u003c/dependency\u003e\n  ...\n\u003c/dependencies\u003e\n```\nFor spring boot autoconfigure\n```xml\n\u003cdependencies\u003e\n  ...\n  \u003c!-- Import the nimbus can auto configuration JwtTokenService bean  --\u003e\n  \u003cdependency\u003e\n    \u003cgroupId\u003ecom.nimbusds\u003c/groupId\u003e\n    \u003cartifactId\u003enimbus-jose-jwt\u003c/artifactId\u003e\n    \u003cversion\u003e${nimbus-jose-jwt.version}\u003c/version\u003e\n  \u003c/dependency\u003e\n  \u003cdependency\u003e\n    \u003cgroupId\u003ecom.youkol.support.shiro\u003c/groupId\u003e\n    \u003cartifactId\u003eshiro-support-spring-boot-starter\u003c/artifactId\u003e\n    \u003cversion\u003e${shiro-support.version}\u003c/version\u003e\n  \u003c/dependency\u003e\n  ...\n\u003c/dependencies\u003e\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyoukol%2Fshiro-support","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fyoukol%2Fshiro-support","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyoukol%2Fshiro-support/lists"}