会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
小猫会发光
管理
2022年12月27日
spring七种事务传播行为
摘要: propagation_requierd:如果当前没有事务,就新建一个事务,如果已存在一个事务中,加入到这个事务中,这是最常见的选择。 propagation_supports:支持当前事务,如果没有当前事务,就以非事务方法执行。 propagation_mandatory:使用当前事务,如果没有当
阅读全文
posted @ 2022-12-27 13:22 小猫会发光
阅读(45)
评论(0)
推荐(0)
2022年11月17日
排序算法
摘要: ` package com.six.prac; public class Sort { /** * 冒泡排序 时间复杂度 T = O(n²) * @param arrs * @return */ public static int[] maopao(int[] arrs){ for(int i=0;
阅读全文
posted @ 2022-11-17 15:40 小猫会发光
阅读(12)
评论(0)
推荐(0)
2022年11月2日
main.js
摘要: function uuid() { return 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function (c) { var r = Math.random() * 16 | 0, v = c == 'x' ? r : (r
阅读全文
posted @ 2022-11-02 00:15 小猫会发光
阅读(43)
评论(0)
推荐(0)
2022年10月28日
document
摘要: getAttribute("name") //获取自定义属性
阅读全文
posted @ 2022-10-28 23:23 小猫会发光
阅读(28)
评论(0)
推荐(0)
2022年10月27日
【XMLHttpRequest】
摘要: const xhr = new XMLHttpRequest(); xhr.open("POST", "/menu/list/111", false); xhr.onload = function (){ if (xhr.readyState 4 && xhr.status 200) { //xhr
阅读全文
posted @ 2022-10-27 23:45 小猫会发光
阅读(31)
评论(0)
推荐(0)
2022年10月12日
【springboot】api文档插件
摘要: https://doc.xiaominfo.com/docs/quick-start
阅读全文
posted @ 2022-10-12 13:29 小猫会发光
阅读(15)
评论(0)
推荐(0)
2022年10月10日
【Ubuntu】redis安装
摘要: https://blog.csdn.net/m0_67403013/article/details/124090499
阅读全文
posted @ 2022-10-10 23:59 小猫会发光
阅读(25)
评论(0)
推荐(0)
【Ubuntu】mysql安装
摘要: 下载:https://dev.mysql.com/downloads/ version:8.0.30 su dpkg -i mysql-connector-java_8.0.30-1ubuntu22.04_all.deb apt-get update apt-get install mysql-se
阅读全文
posted @ 2022-10-10 17:15 小猫会发光
阅读(30)
评论(0)
推荐(0)
【Unbuntu】jdk安装
摘要: 下载:https://www.oracle.com/java/technologies/downloads/ version:jdk-8u333-linux-x64.tar.gz 解压 tar -zxvf jdk-8u333-linux-x64.tar.gz vim /etc/profile exp
阅读全文
posted @ 2022-10-10 16:50 小猫会发光
阅读(54)
评论(0)
推荐(0)
命令大全
摘要: Linux #查看linux版本 cat /proc/version #查看磁盘 df #查看进程 top #进程树 pstree #查看指定服务PID pgrep -l [servername] #关闭进程 kill PID kill PID1 PID2 PID3 #强制关闭 kill -9 PI
阅读全文
posted @ 2022-10-10 12:15 小猫会发光
阅读(43)
评论(0)
推荐(0)
下一页
公告