摘要:
propagation_requierd:如果当前没有事务,就新建一个事务,如果已存在一个事务中,加入到这个事务中,这是最常见的选择。 propagation_supports:支持当前事务,如果没有当前事务,就以非事务方法执行。 propagation_mandatory:使用当前事务,如果没有当 阅读全文
摘要:
` package com.six.prac; public class Sort { /** * 冒泡排序 时间复杂度 T = O(n²) * @param arrs * @return */ public static int[] maopao(int[] arrs){ for(int i=0; 阅读全文
摘要:
function uuid() { return 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function (c) { var r = Math.random() * 16 | 0, v = c == 'x' ? r : (r 阅读全文
摘要:
getAttribute("name") //获取自定义属性 阅读全文
摘要:
const xhr = new XMLHttpRequest(); xhr.open("POST", "/menu/list/111", false); xhr.onload = function (){ if (xhr.readyState 4 && xhr.status 200) { //xhr 阅读全文
摘要:
https://doc.xiaominfo.com/docs/quick-start 阅读全文
摘要:
https://blog.csdn.net/m0_67403013/article/details/124090499 阅读全文
摘要:
下载: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 阅读全文
摘要:
下载: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 阅读全文
摘要:
Linux #查看linux版本 cat /proc/version #查看磁盘 df #查看进程 top #进程树 pstree #查看指定服务PID pgrep -l [servername] #关闭进程 kill PID kill PID1 PID2 PID3 #强制关闭 kill -9 PI 阅读全文