痴情火龙果

文章
4
资源
0
加入时间
2年10月18天

Tomcat源码阅读#1:classloader初始化

Bootstrap通过Tomcat的启动脚本可以看到启动的入口是在Bootstrap,来看下Bootstrap的main方法,/** * Main method and entry point when starting Tomcat via the provided * scripts. * * @param...

mysql5.5存储引擎

mysql提供了多个不同的存储引擎。包括处理事务安全表的引擎和处理非事务安全表的引擎。在mysql中,不需要整个过程只使用一种引擎,可以针对具体的要求,每个表使用不同的引擎,mysql5.5支持的引擎有,innodb,myisam,memory,merge,csv等等。可以使用SHOW ENGINES \G; 命令查看当前mysql支持的引擎:注意图中,support的列表示某种引擎的能否使用,...

Swift Data和字符串互转

let str:String = "意大利"//字符串转Datalet data = str.data(using: String.Encoding.utf8)//Data转字符串let newStr = String(data: data!, encoding: String.Encoding.utf8)print("data=" , data! , "\n" , &quot