240 发简信
IP属地:上海
  • Linux命令

    建多级目录:mkdir -p 目录名删除空目录:rmdir 目录名删除非空目录:rm -rf 目录名创建空文件:touch 文件名拷贝文件:cp...

  • Git命令

    单行显示修改日志 git log --oneline显示到从head版本到之前某个版本需要移动几步 git reflog基于索引值前进或后退...

  • 设计模式七大原则

    1.单一职责原则2.接口隔离原则3.依赖倒转原则4.里氏替换原则5.开闭原则6.迪米特法则7.合成复用原则

  • Resize,w 360,h 240
  • 垃圾回收,什么是垃圾

    垃圾是指在运行程序中没有任何指针指向的对象,这个对象就是需要被回收的垃圾。

  • SpringBoot报 错 Circular view path

    增加配置:spring:freemarker:cache: falsecharset: UTF-8check-template-location...

  • 连接mysql8.0版本出现1251--Client does not support authentication protocol requested by server的解决

    ALTER USER 'root'@'localhost' IDENTIFIED BY 'password' PASSWORD EXPIRE N...