# shiro_study **Repository Path**: xccit/shiro_study ## Basic Information - **Project Name**: shiro_study - **Description**: shiro学习阶段代码 - **Primary Language**: Java - **License**: MulanPSL-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2023-05-31 - **Last Updated**: 2023-06-02 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Shiro学习笔记 ## 目录 > > shiro_login shiro简单使用 > > shiro_springboot Shiro与SpringBoot整合 ## 参考笔记 > https://doc.yonyoucloud.com/doc/apache-shiro-1.2.x-reference/II.%20Core%20%E6%A0%B8%E5%BF%83/7.%20Realms.html # Git提交代码 ```text 简易的命令行入门教程: Git 全局设置: git config --global user.name "i小昕" git config --global user.email "1571466236@qq.com" 创建 git 仓库: mkdir shiro_study cd shiro_study git init touch README.md git add README.md git commit -m "first commit" git remote add origin https://gitee.com/xccit/shiro_study.git git push -u origin "master" 已有仓库? cd existing_git_repo git remote add origin https://gitee.com/xccit/shiro_study.git git push -u origin "master" ```