上一页 1 2 3 4 5 6 7 8 9 ··· 17 下一页
摘要: spring 1.x 版本及以前版本 server.context-path=/test spring 2.x 版本及以后版本 server.servlet.context-path=/test 阅读全文
posted @ 2023-02-16 16:02 唏嘘- 阅读(701) 评论(0) 推荐(0) 编辑
摘要: 一、下载插件速度慢的原因 在使用Intellij IDEA下载插件时,常常会遇到插件市场和插件详情加载失败、插件下载速度太慢导致下载失败等等。这并不是因为Jetbrains的服务器在国外,导致访问速度很慢。实际上,Jetbrains在世界各地都有下载加速服务器,不过因为电脑自动查询到的网站服务器可能 阅读全文
posted @ 2023-01-31 17:00 唏嘘- 阅读(2678) 评论(0) 推荐(2) 编辑
摘要: 1、生成GUID https://www.guidgen.com/ 生成GUID 2、服务器地址 http://idea.javatiku.cn/{GUID} 阅读全文
posted @ 2023-01-31 16:53 唏嘘- 阅读(372) 评论(0) 推荐(1) 编辑
摘要: 1、将手机号码中间四位隐藏 select REPLACE(mobile, SUBSTR(mobile,4,4), '****') from users 2、将手机号码中间四位隐藏(推荐使用) select insert(mobile, 4, 4, '****') from users ; 参考:ht 阅读全文
posted @ 2023-01-13 09:28 唏嘘- 阅读(627) 评论(0) 推荐(0) 编辑
摘要: String value = ""; double numValue = Double.valueOf(value); //保留6位小数,并四舍五入 BigDecimal decimal = new BigDecimal(String.valueOf(value)).setScale(6, BigD 阅读全文
posted @ 2023-01-12 17:00 唏嘘- 阅读(1063) 评论(0) 推荐(0) 编辑
摘要: stringObj.split([separator,[limit]]) separator: 可选项。字符串或正则表达式对象,它标识了分隔字符串时使用的是一个还是多个字符。如果忽略该选项,返回包含整个字符串的单一元素数组。 limit: 参数控制separator应用的次数,因此影响所得数组的长度 阅读全文
posted @ 2023-01-12 16:47 唏嘘- 阅读(186) 评论(0) 推荐(0) 编辑
摘要: 报错提示: > 1292 - Truncated incorrect DOUBLE value: '1,' 原因: update device set type = REPLACE(type, '2', '') where type = 2; type 类型为varchar,需要改为 update 阅读全文
posted @ 2022-12-08 15:59 唏嘘- 阅读(438) 评论(0) 推荐(0) 编辑
摘要: 报错日志: Description: The dependencies of some of the beans in the application context form a cycle: personController (field com.example.wongz.service.Us 阅读全文
posted @ 2022-12-02 15:32 唏嘘- 阅读(830) 评论(0) 推荐(0) 编辑
摘要: 在配置类中没有加上 @Configuration 导致@Bean之间不能相互调用 阅读全文
posted @ 2022-12-01 16:01 唏嘘- 阅读(534) 评论(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 唏嘘- 阅读(277) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 17 下一页