上一页 1 2 3 4 5 6 ··· 49 下一页
摘要: //得到一个月最最后一天日期(31/30/29/28) int days=cal.getActualMaximum(Calendar.DAY_OF_MONTH); 阅读全文
posted @ 2023-03-06 08:57 1161588342 阅读(14) 评论(0) 推荐(0) 编辑
摘要: 腾讯坐标拾取器: https://lbs.qq.com/getPoint/ 高德地址参考: https://blog.csdn.net/pengxiaozhong/article/details/124013019 1.先去高德官网 实名认证然后创建应用,添加web服务 2.根据api获取经纬度 p 阅读全文
posted @ 2023-02-22 16:25 1161588342 阅读(328) 评论(0) 推荐(0) 编辑
摘要: 1 /** * 压缩图片 * base64 : 图片base64字符串 * w : 图片宽高最大值 * callback : 回调函数 * quality : 压缩系数0-1之间, 默认0.92 * limit : 压缩限制字符串长度单位(KB) * 使用: * import { compressB 阅读全文
posted @ 2023-02-16 16:19 1161588342 阅读(211) 评论(0) 推荐(0) 编辑
摘要: 先使用命令查看需要查看的进程 ps -ef | grep java root 29861 13755 2 09:42 pts/0 00:10:48 java -jar XXXX.jar ps axo pid,ppid,comm,pmem,lstart | grep 29861 参考: https:/ 阅读全文
posted @ 2023-02-10 17:55 1161588342 阅读(105) 评论(0) 推荐(0) 编辑
摘要: 参考 https://blog.csdn.net/weixin_41544866/article/details/119738605 阅读全文
posted @ 2022-12-07 10:26 1161588342 阅读(53) 评论(0) 推荐(0) 编辑
摘要: 查看源码如下: org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration 可以看见调用了MultipartProperties类的createMultiparConfig()方法 org.springf 阅读全文
posted @ 2022-10-21 14:12 1161588342 阅读(345) 评论(0) 推荐(0) 编辑
摘要: 参考: https://blog.csdn.net/qq_45684867/article/details/123951309 阅读全文
posted @ 2022-10-19 16:20 1161588342 阅读(16) 评论(0) 推荐(0) 编辑
摘要: 参考: https://blog.csdn.net/lianghecai52171314/article/details/127330916 阅读全文
posted @ 2022-10-19 15:15 1161588342 阅读(16) 评论(0) 推荐(0) 编辑
摘要: 上次因为自增,发现配置没生效, 修改后如下 # 配置mybatis-plus, 参考:com.baomidou.mybatisplus.autoconfigure.MybatisPlusProperties mybatis-plus: # 扫描mapper, 默认:classpath*:/mappe 阅读全文
posted @ 2022-10-19 12:14 1161588342 阅读(25) 评论(0) 推荐(0) 编辑
摘要: 参考: https://blog.csdn.net/u012019209/article/details/124585933 @TableId(type = IdType.AUTO) private Long id; 查看源码, 默认用的雪花算法,所以很大,改为 AUTO正常 阅读全文
posted @ 2022-10-19 11:34 1161588342 阅读(23) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 49 下一页