报错展示 我在初始化msyql的时候报错:mysqld: error while loading shared libraries: libaio.so.1: cannot open shared object file: No such file or directory 解读: libaio包的作用是为了支持同步I/O。对于数据库之类的系统特别重要,因此…
内网穿透:在一台有公网IP的服务器代理下将本地资源暴露在公网中,这里以最简单的TCP穿透为例去展示
1.Frp下载
GitHub - fatedier/frp: A fast reverse proxy to help you expose a local server behind a NAT or firewall to the internet.
下载客户端…
线程安全性
当多个线程访问某个类时,这个类始终都能表现出正确的行为,那么就称这个类是线程安全的
public class A {public void test(){//....}
}无状态对象是线程安全的,其不包含任何域,也不包含任何对其他类中域的引用&#…