摘要: 转载:https://blog.csdn.net/qq_18630487/article/details/107514568 阅读全文
posted @ 2020-10-09 13:47 路要一步一步走 阅读(6035) 评论(0) 推荐(0) 编辑
摘要: Mybatis逆向生成代码避免tinyint生成Boolean 1.tinyint长度设为2(不建议),对于is_delete类似字段,一位就够了 2.在链接数据库的url加 ?tinyInt1isBit=false" 会生成Byte,默认这个属性是true 阅读全文
posted @ 2020-10-09 12:25 路要一步一步走 阅读(649) 评论(0) 推荐(0) 编辑
摘要: 测试增强for循环是否需要判断为null 例1: public static void main(String[] args) { List<Object> list = null; for(Object s : list){ System.out.println("a"); } } 例2 publ 阅读全文
posted @ 2020-10-09 11:00 路要一步一步走 阅读(1063) 评论(0) 推荐(0) 编辑
摘要: 转载:https://www.cnblogs.com/qlqwjy/p/10551283.html 阅读全文
posted @ 2020-10-09 10:28 路要一步一步走 阅读(115) 评论(0) 推荐(0) 编辑