上一页 1 2 3 4 5 6 ··· 11 下一页
摘要: Spring Boot 3.3 & CDS: https://www.jdon.com/75227.html 阅读全文
posted @ 2024-09-03 15:37 漠孤烟 阅读(23) 评论(0) 推荐(0) 编辑
摘要: 闭包 闭包,允许函数访问创建时的作用域中的变量,即使该函数在其原始作用域之外被执行。这使得闭包非常适合用于封装私有变量和创建具有特定状态的函数。 Javascript里的闭包 function createCounter() { let count = 0; // 计数器的私有变量 return { 阅读全文
posted @ 2024-08-29 09:03 漠孤烟 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 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 [::]:* 阅读全文
posted @ 2024-08-27 15:16 漠孤烟 阅读(10) 评论(0) 推荐(0) 编辑
摘要: 将本地目录 /mypath/app 目录下的所有文件复制到远程服务器 scp -r /mypath/app/* user@192.168.1.2:/remote/path 阅读全文
posted @ 2024-08-26 11:12 漠孤烟 阅读(12) 评论(0) 推荐(0) 编辑
摘要: 使用myuser创建的顶层目录myuser_app,但owner不是myuser,需要再将owner改为myuser,然再myuser就可以随便在/myuser_app进行各种文件操作了。 sudo chown -R myuser /myuser_app 阅读全文
posted @ 2024-08-26 11:04 漠孤烟 阅读(9) 评论(0) 推荐(0) 编辑
摘要: 添加依赖 <dependency> <groupId>org.openjdk.jol</groupId> <artifactId>jol-core</artifactId> <version>0.17</version> </dependency> 查看对象头大小 @Test void header 阅读全文
posted @ 2024-08-23 10:20 漠孤烟 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 1、 添加依赖 <dependency> <groupId>com.github.ulisesbocchio</groupId> <artifactId>jasypt-spring-boot-starter</artifactId> <version>3.0.5</version> </depend 阅读全文
posted @ 2024-08-22 18:11 漠孤烟 阅读(29) 评论(0) 推荐(0) 编辑
摘要: Intersection Type 交叉类型,语法:Type1 & Type2 示例写法 public class MyClass { public void hello() { System.out.println("hello"); } } interface MyInteface { // . 阅读全文
posted @ 2024-08-21 20:25 漠孤烟 阅读(15) 评论(0) 推荐(0) 编辑
摘要: jakarta.validation是一套数据校验的规范 依赖包为: <dependency> <groupId>jakarta.validation</groupId> <artifactId>jakarta.validation-api</artifactId> <version>3.0.2</ 阅读全文
posted @ 2024-08-21 15:56 漠孤烟 阅读(261) 评论(0) 推荐(0) 编辑
摘要: https://github.com/brettwooldridge/HikariCP/wiki/About-Pool-Sizing 推荐连接数 = (cpu核数 * 2 + 磁盘有效主轴数) 阅读全文
posted @ 2024-08-20 15:53 漠孤烟 阅读(6) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 11 下一页