Spring Boot 2.0.4 & Spring Security 5.0.7 权限管理系统。(精力有限,停止维护)
-
Updated
Jul 1, 2020 - Java
Spring Boot 2.0.4 & Spring Security 5.0.7 权限管理系统。(精力有限,停止维护)
Spring Boot React OAuth2 Social Login with Google, Facebook, and Github
本项目原名为CitySecurity,是本人为正式上线项目做得一个Demo,这里主要介绍浏览器端的登录.本项目使用了SpringSecurity实现表单安全登录、图形验证的校验、记住我时长控制机制、第三方登录.比较独特的一点是集合SpringSocial做第三方登录的支持(此处本人测试自用app-id和app-secret,如果需要测试可以帮忙点下星发邮件给我,会尽快给与回复,谢谢支持!).该方案是目前本人觉得比较完善的一套安全登录的方式,前端页面设计也是本人制作,比较简洁,当然你也可以用自己的一套比较漂亮的UI,此处仅供参考,有什么好的建议都可以给予反馈.该框架在Spring官方网站上也有相关的文档介绍,喜欢本项目的伙伴可以给我点下星,支持一下,当然可以与我交流,共同学习,共同进步!
Sample application integrating Spring Cloud Gateway and Spring Security OAuth2
Example Spring Boot + Spring Security+ OAuth2 project for demonstration purposes.
some examples that show basic and more advanced implementations of oauth2 authorization mechanism in spring-cloud microservices environment
Oauth2 Stateless Authentication with Spring and JWT Token
spring-boot and spring oauth2
Deep Integrate Spring Security & OAuth2
Spring OAuth2 Security extension to use Mongo as Repository
脚手架工程(springboot + springsecurity + mybatis + redis + swagger + oauth2),内含freemarker的代码生成器
Spring Security OAuth Workshop
Spring Security OAuth2 Social Google Facebook
Spring Security OAuth 2.0 Guide
这是一个oauth2的示例工程,还原了oauth2标准的完整实现流程,应用它可以加深我们对oauth2的理解。
Spring Boot, Vue.js
Starter Template to create a OAuth2 secured dockerized Spring Boot 2 Application with Angular 8 Frontend
基于Springboot与OAuth2实现的开放平台,同时支持:用户身份认证授权(Security),客户端身份认证授权(OAuth2),资源服务(OAuth2)。
Sample standalone OAuth2 authorization server using Spring Boot
基于SpringBoot + SpringData JPA + SpringSecurity + SpringSecurity OAuth2 + Vue-Element-UI的后台管理系统,提供代码生成器,基本增删改查无需编写,可快速完成开发任务。前后端分离,RESTful 风格交互, 开发精简,可当脚手架,适合作为后台管理系统基础模板。
A microservices architecture built with JHipster, OAuth 2.0, and Okta
基于SpringBoot2/SpringSecurity/SpringSocial/SpringSecurityOAuth2构建的互联网应用基础框架,包含认证中心、消息通知、安全中心和用户中心。支持Session/JWT/OAuth2认证模式,支持账号密码/短信验证码/社会化登录等登录模式。接入支付宝/微信/QQ/微信公众号/微信小程序等第三方平台,支持Web应用和App应用,可快速构建SSO平台和OpenAPI平台。
spring-boot、spring-cloud 中文资料收集
NiceFish的服务端代码,基于SpringCloud技术栈。
Example rest api with OAuth authentication made by using Spring Boot
Spring Boot, OAuth 2.0, and Okta Example
Add a description, image, and links to the spring-security-oauth2 topic page so that developers can more easily learn about it.
To associate your repository with the spring-security-oauth2 topic, visit your repo's landing page and select "manage topics."
DROP TABLE IF EXISTS users;
CREATE TABLE users (
user_id BIGINT PRIMARY KEY auto_increment,
username VARCHAR(128) UNIQUE,
password VARCHAR(256),
enabled BOOL,
);
after enabled BOOL,An extra comma