摘要: 1 创建一个springboot项目 参考地址:springboot-hello world 创建过程中添加web模块 2 导入thymeleaf依赖 pom.xml <!--thymeleaf模板引擎--> <dependency> <groupId>org.thymeleaf</groupId> 阅读全文
posted @ 2022-03-08 16:56 从0开始丿 阅读(165) 评论(1) 推荐(0) 编辑
摘要: 1 创建一个普通的maven项目 2 引入依赖 pom.xml <!-- https://mvnrepository.com/artifact/org.apache.shiro/shiro-core --> <dependency> <groupId>org.apache.shiro</groupI 阅读全文
posted @ 2022-03-08 15:50 从0开始丿 阅读(62) 评论(0) 推荐(0) 编辑
摘要: 承接:springboot-springsecurity:注销和权限控制 1 记住我实现 1.1 在SecurityConfig中添加http.rememberMe();这行代码 src/main/java/com/lv/config/SecurityConfig.java package com. 阅读全文
posted @ 2022-03-08 12:07 从0开始丿 阅读(125) 评论(0) 推荐(0) 编辑
摘要: 承接:springboot-springsecurity:用户认证和授权 1 账户注销 1.1 在SecurityConfig中加入开启注销功能的代码 src/main/java/com/lv/config/SecurityConfig.java package com.lv.config; imp 阅读全文
posted @ 2022-03-08 11:16 从0开始丿 阅读(305) 评论(0) 推荐(0) 编辑
摘要: 承接:springboot-springsecurity:测试环境搭建 1 引入springsecurity依赖 pom.xml <!--springSecurity--> <dependency> <groupId>org.springframework.boot</groupId> <artif 阅读全文
posted @ 2022-03-08 08:21 从0开始丿 阅读(300) 评论(0) 推荐(0) 编辑