
笔记
✌(̿▀̿ ̿Ĺ̯̿̿▀̿ ̿)✌
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
easyexcel小实践
public void excelExport(String excelTemplatesPath, String excelExportPath, List lists) { String template = excelTemplatesPath; ExcelWriter build = EasyExcel.write(excelExportPath).withTemplate(template).build(); FillConfig fillConfig = FillConfig....原创 2022-01-06 17:49:50 · 743 阅读 · 0 评论 -
数据结构-链表-约瑟夫环
package com.atguigu.linkedlist; public class Josepfu { public static void main(String[] args) { // 测试一把看看构建环形链表,和遍历是否ok CircleSingleLinkedList circleSingleLinkedList = new CircleSingleLinkedList(); circleSingleLinkedList.addBoy(125);// 加入5个小孩节点原创 2021-08-06 08:58:48 · 96 阅读 · 0 评论 -
数据结构-链表-双向链表
package com.atguigu.linkedlist; public class DoubleLinkedListDemo { public static void main(String[] args) { // 测试 System.out.println("双向链表的测试"); // 先创建节点 HeroNode2 hero1 = new HeroNode2(1, "宋江", "及时雨"); HeroNode2 hero2 = new HeroNode2(2, "卢俊义原创 2021-08-06 08:57:22 · 107 阅读 · 0 评论 -
数据结构-链表-单链表
package com.atguigu.linkedlist; import java.util.Stack; public class SingleLinkedListDemo { public static void main(String[] args) { //进行测试 //先创建节点 HeroNode hero1 = new HeroNode(1, "宋江", "及时雨"); HeroNode hero2 = new HeroNode(2, "卢俊义", "玉麒麟");原创 2021-08-06 08:53:40 · 150 阅读 · 0 评论 -
layui中遇到的接受前端JSON数据问题
layui向controller提交数据遇到的问题: 发现没办法提交json数据: 1.controller层 @PostMapping("/v") public void pa1(@RequestParam("username") String username ,@RequestParam("sex") String sex ,@RequestParam("phone") String phone ,@RequestParam("idcard") String idcard, @RequestParam原创 2021-08-03 18:12:01 · 577 阅读 · 0 评论 -
layui数据表格返回json数据
wetesgdsgfsdfdsfdsf原创 2021-08-03 18:04:01 · 427 阅读 · 0 评论 -
2021-08-02
vim /etc/my.cnf 在[mysqld]下加入 skip-grant-tables (这个意思是跳过权限验证,可免密码登录 ) 然后保存退出, 重启mysql 2 ./etc/init.d/mysqld restart 登录 3 mysql -u root -p 5.7版本前的mysql运行: update user set password=password(“你的密码”) where user=“用户”; 5.7版本后的mysql运行:update mysql.user set auth原创 2021-08-02 17:16:07 · 173 阅读 · 0 评论 -
springmvc03
|原创 2021-06-16 10:50:40 · 82 阅读 · 0 评论 -
springmvc注解式开发
原创 2021-06-09 13:15:46 · 79 阅读 · 0 评论 -
spring-ioc注解
原创 2021-06-01 15:40:49 · 88 阅读 · 0 评论 -
mybatis DAY01
原创 2021-05-26 16:32:05 · 97 阅读 · 0 评论