摘要:
Spring Boot 3.3 & CDS: https://www.jdon.com/75227.html 阅读全文
摘要:
闭包 闭包,允许函数访问创建时的作用域中的变量,即使该函数在其原始作用域之外被执行。这使得闭包非常适合用于封装私有变量和创建具有特定状态的函数。 Javascript里的闭包 function createCounter() { let count = 0; // 计数器的私有变量 return { 阅读全文
摘要:
ss -ntlp 输出: State Recv-Q Send-Q Local Address:Port Peer Address:Port LISTEN 0 128 *:22 *:* LISTEN 0 100 127.0.0.1:25 *:* LISTEN 0 50 [::]:8080 [::]:* 阅读全文
摘要:
将本地目录 /mypath/app 目录下的所有文件复制到远程服务器 scp -r /mypath/app/* user@192.168.1.2:/remote/path 阅读全文
摘要:
使用myuser创建的顶层目录myuser_app,但owner不是myuser,需要再将owner改为myuser,然再myuser就可以随便在/myuser_app进行各种文件操作了。 sudo chown -R myuser /myuser_app 阅读全文
摘要:
添加依赖 <dependency> <groupId>org.openjdk.jol</groupId> <artifactId>jol-core</artifactId> <version>0.17</version> </dependency> 查看对象头大小 @Test void header 阅读全文
摘要:
1、 添加依赖 <dependency> <groupId>com.github.ulisesbocchio</groupId> <artifactId>jasypt-spring-boot-starter</artifactId> <version>3.0.5</version> </depend 阅读全文
摘要:
Intersection Type 交叉类型,语法:Type1 & Type2 示例写法 public class MyClass { public void hello() { System.out.println("hello"); } } interface MyInteface { // . 阅读全文
摘要:
jakarta.validation是一套数据校验的规范 依赖包为: <dependency> <groupId>jakarta.validation</groupId> <artifactId>jakarta.validation-api</artifactId> <version>3.0.2</ 阅读全文
摘要:
https://github.com/brettwooldridge/HikariCP/wiki/About-Pool-Sizing 推荐连接数 = (cpu核数 * 2 + 磁盘有效主轴数) 阅读全文