摘要:
grant all privileges on *.* to 'root'@'%' identified by 'root' with grant option; 解释: grant [权限] on [database.table] to [用户名]@[IP] identified by [密码]; 阅读全文
摘要:
JVM: 1.虚拟机栈和程序计数器每个线程会单独生成 2.方法区和堆是多线程共享的 多线程优点: 1、提高计算机系统CPU的利用率 2、将既长又复杂的进程分为多个线程,独立运行,利于理解和修改 创建多线程方式: 方式一、创建一个类继承Thread类 ,重写run()方法 ,在run()方法里面写线程 阅读全文
摘要:
https://repo.spring.io/release/org/springframework/spring/ 阅读全文
摘要:
基础排序: 适用于数据量比较小的场景 1.冒泡排序 int arr[] = {6,4,3,5,1,2}; for (int i = 0 ; i < arr.length ; i++){ for (int j= 0 ; j < arr.length - 1 ; j++){ if(arr[i] > ar 阅读全文
摘要:
#!/bin/sh # Database infoDB_USER="111"DB_PASS="111"DB_HOST="1111"DB_NAME="数据库名1 数据库名2" # Others varsBIN_DIR="/usr/local/mysql/bin" #the mysql bin path 阅读全文
摘要:
信息收集关闭禁用: #进入容器后,cd到以下路径cd /etc/rabbitmq/conf.d/ #修改 management_agent.disable_metrics_collector = falseecho management_agent.disable_metrics_collector 阅读全文
摘要:
https://start.spring.io/actuator/info 阅读全文
摘要:
github地址: https://github.com/alibaba/spring-cloud-alibaba/blob/2.2.x/spring-cloud-alibaba-examples/nacos-example/nacos-discovery-example/readme-zh.md 阅读全文
摘要:
docker run --name nginx -p 8081:8081 -v /home/data/nginx/nginx.conf:/etc/nginx/nginx.conf -v /home/data/web/:/home/data/web/ -v /home/data/nginx/logs/ 阅读全文
摘要:
http://heavy_code_industry.gitee.io/code_heavy_industry/ 阅读全文