摘要:
我们在学习mybatis中会出现Communications link failure报错,我当时找了一天都没有找到合适的解决方案 Sun Aug 07 08:30:43 CST 2022 WARN: Establishing SSL connection without server's iden 阅读全文
摘要:
泛型 泛型注意事项 1.给泛型指向数据类型要求是引用类型,不能是基本数据类型 2.在给泛型指定具体类型后,可以传入该类型或者其子类类型 3.泛型的写法 常规写法:HashSet set = new HashSet(); 省略写法:HashSet set = new HashSet<>(); 阅读全文