
exception
palm down
这个作者很懒,什么都没留下…
展开
-
mybatis-plus LocalTime查询不到数据
create table room_time_unit ( id bigint unsigned auto_increment comment '主键' primary key, code int not null comment '时间段code', hour int not null comment '小时', step int原创 2021-05-13 16:13:36 · 1603 阅读 · 5 评论 -
解决maven依赖冲突
解决maven jar版本冲突原创 2020-09-22 15:07:12 · 2874 阅读 · 0 评论 -
常见异常和处理方式
文章目录开发中如何避免runtime 异常空指针异常数组下标越界数学运算异常数字格式异常异常处理思路: 开发中如何避免runtime 异常 如何在开发中避免bug,示例是java代码 空指针异常 java.lang.NullPointerException:空指针 产生的原因:使用对象(字段/方法)值为null 代码示例: 避免空指针代码实例: equals避免空指针: 数组下标越界 ArrayIndexOutOfBoundsException :数组下标越界 产生的原因:使用超出数组下标范围的原创 2020-07-12 10:12:25 · 258 阅读 · 0 评论