Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Springall | 24,478 | 5 months ago | 26 | mit | Java | |||||
循序渐进,学习Spring Boot、Spring Boot & Shiro、Spring Batch、Spring Cloud、Spring Cloud Alibaba、Spring Security & Spring Security OAuth2,博客Spring系列源码:https://mrbird.cc | ||||||||||
Spring Security | 7,541 | 16,215 | 1,011 | 20 hours ago | 174 | August 15, 2022 | 847 | apache-2.0 | Java | |
Spring Security | ||||||||||
Jwt Spring Security Demo | 2,534 | 3 years ago | 2 | mit | Java | |||||
A demo for using JWT (Json Web Token) with Spring Security and Spring Boot 2 | ||||||||||
Jasypt Spring Boot | 2,325 | 352 | 104 | 3 months ago | 29 | August 29, 2021 | 22 | mit | Java | |
Jasypt integration for Spring boot | ||||||||||
Pac4j | 2,240 | 146 | 129 | 21 hours ago | 96 | September 08, 2022 | apache-2.0 | Java | ||
Security engine for Java (authentication, authorization, multi frameworks): OAuth, CAS, SAML, OpenID Connect, LDAP, JWT... | ||||||||||
Spring Boot Leaning | 2,068 | 5 months ago | 1 | Java | ||||||
Spring Boot 2.X 最全课程代码 | ||||||||||
Spring Security Oauth | 1,869 | 21 days ago | 9 | mit | Java | |||||
Just Announced - "Learn Spring Security OAuth": | ||||||||||
Tut Spring Security And Angular Js | 1,671 | 23 days ago | 92 | TypeScript | ||||||
Spring Security and Angular:: A tutorial on how to use Spring Security with a single page application with various backend architectures, ranging from a simple single server to an API gateway with OAuth2 authentication. | ||||||||||
X Springboot | 1,662 | a month ago | 1 | Java | ||||||
X-SpringBoot是一个轻量级的Java快速开发平台,能快速开发项目并交付【接私活利器】 | ||||||||||
Security Core | 1,660 | 9,008 | 373 | 14 days ago | 471 | June 25, 2022 | mit | PHP | ||
Security provides an infrastructure for sophisticated authorization systems, which makes it possible to easily separate the actual authorization logic from so called user providers that hold the users credentials. It is inspired by the Java Spring framework. |
This library provides an OpenID Connect implementation for FusionAuth and Spring Security.
<dependency>
<groupId>io.fusionauth</groupId>
<artifactId>fusionauth-spring-security</artifactId>
<version>1.0.5</version>
</dependency>
Use our Example to get going and read through this tutorial to understand more about using Spring Security with FusionAuth.
If you encounter an issue with this library please open an Issue on this project, or if you get stuck integrating FusionAuth in your application open an issue here https://github.com/FusionAuth/fusionauth-issues/issues.
Example configuration where the base URL of FusionAuth is login.piedpiper.com
and the Spring application is running on port 8081
.
# Copy this file to application.properties and fill in the clientId and clientSecret
server.port=8081
fusionAuth.clientId=<your client_id>
fusionAuth.clientSecret=<your client_secret>
fusionAuth.accessTokenUri=https://login.piedpiper.com/oauth2/token
fusionAuth.userAuthorizationUri=https://login.piedpiper.com/oauth2/authorize
fusionAuth.userInfoUri=https://login.piedpiper.com/oauth2/userinfo
fusionAuth.redirectUri=http://localhost:8081/login
Some portions of this code were forked/based on the code available here: eugenp/tutorials which are licensed under MIT. The full license is available under LICENSE.