11 2019 档案

摘要:1使用原生sql查询加pageHelper的插件 2使用activiti的listPage查询,再去查询 阅读全文
posted @ 2019-11-25 21:33 远方的人111 阅读(2534) 评论(0) 推荐(0)
摘要:mybatis: https://mybatis.org/mybatis-3/zh/index.html spring: https://www.w3cschool.cn/wkspring/ 阅读全文
posted @ 2019-11-25 21:27 远方的人111 阅读(105) 评论(0) 推荐(0)
摘要:http://www.findjar.com/ 阅读全文
posted @ 2019-11-23 23:49 远方的人111 阅读(96) 评论(0) 推荐(0)
摘要:https://www.cnblogs.com/chenyangsocool/p/8807401.html 阅读全文
posted @ 2019-11-13 22:43 远方的人111 阅读(192) 评论(0) 推荐(0)
摘要:https://blog.csdn.net/qq_42584411/article/details/90342951 阅读全文
posted @ 2019-11-13 14:29 远方的人111 阅读(767) 评论(0) 推荐(0)
摘要:普通值类型不能具有 null 值。 不过,可以在类型后面附加 ?,创建可以为 null 的值类型。 例如,int? 是还可以包含值 null 的 int 类型。 可以为 null 的值类型是泛型结构类型 Nullable<T> 的实例。 在将数据传入和传出数据库(数值可能为 NULL 或未定义)时, 阅读全文
posted @ 2019-11-05 19:38 远方的人111 阅读(392) 评论(0) 推荐(0)
摘要:String str;和String str=null;的区别: 像这种String str = xxx;不管xxx是null还是其他字符串,str这个东西都是在栈里有块空间,可以理解为c的指针,=null的时候,里面存的是0,非null的时候存的是实际字符串的地址(堆中或者常量池中)。而Strin 阅读全文
posted @ 2019-11-05 19:10 远方的人111 阅读(1086) 评论(0) 推荐(0)