Spring Boot 2.0.4 & Spring Security 5.0.7 权限管理系统。(精力有限,停止维护)
-
Updated
Sep 30, 2019 - Java
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