上一页 1 2 3 4 5 6 7 8 9 10 ··· 18 下一页
摘要: 在配置类中没有加上 @Configuration 导致@Bean之间不能相互调用 阅读全文
posted @ 2022-12-01 16:01 唏嘘- 阅读(556) 评论(1) 推荐(1) 编辑
摘要: 前端传入mapList<User> userList = (List<User>) map.get("userList"); List<User> result=JSON.parseArray(JSON.toJSONString(userList),User.class); 阅读全文
posted @ 2022-11-14 15:03 唏嘘- 阅读(280) 评论(0) 推荐(0) 编辑
摘要: 1. disabled 属性规定应该禁用 input 元素,被禁用的 input 元素,不可编辑,不可复制,不可选择,不能接收焦点,后台也不会接收到传值。设置后文字的颜色会变成灰色。 <input type="text" disabled="disabled" /> 2.readonly 属性规定输 阅读全文
posted @ 2022-10-21 14:11 唏嘘- 阅读(221) 评论(0) 推荐(0) 编辑
摘要: span标签加上 style="word-break:break-all;" 阅读全文
posted @ 2022-09-09 13:48 唏嘘- 阅读(27) 评论(0) 推荐(0) 编辑
摘要: 1、局部处理 (1)在相应字段上加@JsonFormat @JsonFormat(shape = JsonFormat.Shape.STRING)(2)在相应字段上加@JsonSerialize@JsonSerialize(using= ToStringSerializer.class) 2、全局处 阅读全文
posted @ 2022-09-07 16:24 唏嘘- 阅读(1631) 评论(0) 推荐(0) 编辑
摘要: 1、根据id值 从小到大排序 //模拟数据 var list = [{"id" : 5, "name": "小明", "age" : 5}, {"id" : 2, "name": "小红", "age" : 12}, {"id" : 3, "name": "小花", "age" : 8}, {"id 阅读全文
posted @ 2022-08-25 10:37 唏嘘- 阅读(1382) 评论(0) 推荐(0) 编辑
摘要: 1.rd /? 命令帮助 删除文件夹(空) rd /S 文件夹路径 2.rmdir /Q /S 目录 删除文件夹(非空) /S 除目录本身外,还将删除指定目录下的所有子目录 /Q 安静模式,带 /S 删除目录树时不要求确认 3.删除文件 del 文件名.后缀 阅读全文
posted @ 2022-07-22 14:45 唏嘘- 阅读(1463) 评论(0) 推荐(0) 编辑
摘要: 1、如果只有一个字段数据重复 自关联,保留id最小的那一条,其它的都删除 DELETE t1 FROM user t1, user t2 WHERE t1.user_code = t2.user_code AND t1.id > t2.id; 2、如果是全部字段都相同 delete from use 阅读全文
posted @ 2022-07-01 09:51 唏嘘- 阅读(1060) 评论(0) 推荐(0) 编辑
摘要: 1093 - You can't specify target table 'table_name' for update in FROM clause;不能先select出同一表中的某些值,再update这个表(在同一语句中) 原语句: delete from i_user where b_cod 阅读全文
posted @ 2022-07-01 09:34 唏嘘- 阅读(29) 评论(0) 推荐(0) 编辑
摘要: select DISTINCT(left(created_on, 10)) createDate from record where plan_id = '123456789' order by created_on desc; 报错信息: Expression #1 of ORDER BY cla 阅读全文
posted @ 2022-06-23 15:27 唏嘘- 阅读(554) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 10 ··· 18 下一页