# SpringSecurity101 **Repository Path**: sishen007/SpringSecurity101 ## Basic Information - **Project Name**: SpringSecurity101 - **Description**: 有关Spring Security博客的代码 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 1 - **Created**: 2022-02-22 - **Last Updated**: 2022-02-25 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README 一、数据库连接信息: host: 192.168.87.61 port: 3306 username: root password: mysql1235 二、数据库表含义 1、authorities表:记录账号的权限,需要我们在后面配置。 2、oauth_approvals表:记录授权批准的状态。 3、oauth_client_details表:记录OAuth的客户端,需要我们在后面做配置。 4、oauth_code表:记录授权码。 5、users表:记录账号,需要我们在后面做初始化。