上一页 1 2 3 4 5 6 7 8 9 10 ··· 13 下一页
摘要: 承接: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开始丿 阅读(308) 评论(0) 推荐(0) 编辑
摘要: 承接:springboot-springsecurity:测试环境搭建 1 引入springsecurity依赖 pom.xml <!--springSecurity--> <dependency> <groupId>org.springframework.boot</groupId> <artif 阅读全文
posted @ 2022-03-08 08:21 从0开始丿 阅读(315) 评论(0) 推荐(0) 编辑
摘要: 1 创建一个springboot项目 参考地址:springboot-hello world 创建项目过程中引入web依赖 2 导入thymeleaf依赖 pom.xml <!--thymeleaf模板引擎--> <dependency> <groupId>org.thymeleaf</groupI 阅读全文
posted @ 2022-03-06 12:46 从0开始丿 阅读(95) 评论(0) 推荐(0) 编辑
摘要: 1 springboot对springmvc的默认配置 视图解析器:Inclusion of ContentNegotiatingViewResolver and BeanNameViewResolver beans. 支持静态资源文件夹的路径,以及webjars: Support for serv 阅读全文
posted @ 2022-03-05 17:10 从0开始丿 阅读(1888) 评论(0) 推荐(0) 编辑
摘要: 1 新建一个sprigboot项目 项目创建过程中,导入以下三个包 2 导入mybatis所需要的依赖 pom.xml </dependency> <!--mybatis-spring-boot-starter--> <dependency> <groupId>org.mybatis.spring. 阅读全文
posted @ 2022-03-05 10:17 从0开始丿 阅读(107) 评论(0) 推荐(0) 编辑
摘要: 继续使用这篇博客中的项目:springboot-整合JDBC 1 配置Druid数据源 1.1 在pom.xml中引入Druid数据源依赖 <!--Druid --> <dependency> <groupId>com.alibaba</groupId> <artifactId>druid</art 阅读全文
posted @ 2022-03-04 17:41 从0开始丿 阅读(192) 评论(0) 推荐(0) 编辑
摘要: 1 搭建一个springboot项目 参考地址:springboot-hello world 2 在pom.xml中引入依赖 <!--Web--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring- 阅读全文
posted @ 2022-03-04 15:04 从0开始丿 阅读(193) 评论(0) 推荐(0) 编辑
摘要: 承接:springboot-项目实战:修改员工 1 删除员工 修改删除员工的按钮 list.html <a class="btn btn-sm btn-danger" th:href="@{/employeeDelete/}+${employee.getId()}">删除</a> 在员工控制器中编写 阅读全文
posted @ 2022-03-04 11:54 从0开始丿 阅读(310) 评论(0) 推荐(0) 编辑
摘要: 承接:springboot-项目实战:增加员工 1 修改编辑员工的按钮 将按钮button改为 a链接,编写跳转地址为修改页面的请求并携带要修改的员工id作为参数 list.html <a class="btn btn-sm btn-primary" th:href="@{/employeeUpda 阅读全文
posted @ 2022-03-04 10:55 从0开始丿 阅读(154) 评论(0) 推荐(0) 编辑
摘要: 承接springboot-项目实战:展示员工列表 1 增加添加员工的按钮 在员工列表的上面增加一个添加员工的按钮 list.html <h2><a class="btn btn-sm btn-success" th:href="@{/employeeAdd}">添加员工</a></h2> 2 在员工 阅读全文
posted @ 2022-03-04 09:07 从0开始丿 阅读(169) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 10 ··· 13 下一页