摘要:
常用代码总结(动态代理) 1. 基于 Java SDK public class SimpleProxyByJavaSdk { interface Life { void work(); } static class Person implements Life { public void work 阅读全文
摘要:
常用的 MySQL 语句 导入数据 source 文件路径 打开 / 关闭安全模式 当 delete 或者 update 没有在 where 条件中指定具体的行,安全模式下会提示禁止。 查看安全模式设置 show variables like 'sql_safe_updates'; 打开安全模式 s 阅读全文