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