Results 8 issues of 随心

启动报错啊,一直出现下载失败的日志,而且会爆文件被占用。我电脑都重启了,还是这样。 ``` [2020-12-21 15:36:20.138][com.ruiyun.jvppeteer.core.browser.BrowserFetcher:764]INFO -- revision:722234,executablePath:D:\Documents\Code\IdeaProjects\test\.local-browser\win64-722234\chrome-win\chrome.exe,folderPath:D:\Documents\Code\IdeaProjects\test\.local-browser\win64-722234,local:false,url:https://npm.taobao.org/mirrors/chromium-browser-snapshots/Win_x64/722234/chrome-win.zip,product:chrome [2020-12-21 15:36:20.145][com.ruiyun.jvppeteer.core.browser.BrowserFetcher:703]INFO -- Downloading binary from https://npm.taobao.org/mirrors/chromium-browser-snapshots/Win_x64/722234/chrome-win.zip [2020-12-21 15:36:22.378][com.ruiyun.jvppeteer.util.DownloadUtil:221]ERROR -- download url[https://npm.taobao.org/mirrors/chromium-browser-snapshots/Win_x64/722234/chrome-win.zip] bytes[bytes=15728640-20971520] fail. [2020-12-21 15:36:22.380][com.ruiyun.jvppeteer.util.DownloadUtil:221]ERROR -- download url[https://npm.taobao.org/mirrors/chromium-browser-snapshots/Win_x64/722234/chrome-win.zip] bytes[bytes=20971520-26214400] fail. [2020-12-21 15:36:22.376][com.ruiyun.jvppeteer.util.DownloadUtil:221]ERROR --...

![image](https://user-images.githubusercontent.com/44720422/106421654-0a90cb00-6498-11eb-8b6e-9270925eef84.png) 看见idea里面引入依赖有版本冲突,两个版本不一致.虽然不影响使用,看着不舒服.

扩展包使用到了javax.servlet.ServletOutputStream类,最新版springboot使用的类jakarta.servlet.ServletOutputStream 包名变化导致不兼容问题。

存序列化存Redis的时候报错: org.springframework.data.redis.serializer.SerializationException: Could not deserialize: invoke constructor error, public org.springframework.security.core.authority.SimpleGrantedAuthority(java.lang.String) SimpleGrantedAuthority是springsecurity的类,没有默认的无参构造器。但是又没有详细的mixin文档

question

![Uploading 17069241861958086638688581355735.jpg…]()

### 是什么版本出现了此问题? 最新 ### 在线站点地址 https://www.jiangqiang.top/archives/shi-yong-sentinelshi-xian-fu-wu-rong-duan-yu-jiang-ji ### 发生了什么? xml格式的代码中如果存在注释,就会被转义成实体符号 ![image](https://github.com/jiewenhuang/halo-theme-joe3.0/assets/44720422/99126a00-7a3a-4025-a652-b0fc99b8037c) ### 相关日志输出 _No response_ ### 附加信息 _No response_

bug

### Describe the bug ./tdl dl -f .\tdl-export.json -d F:\下载\百度云下载\tg\tg -l 30 --continue --skip-same 貌似--skip-same没生效?能下载一堆同名同大小的文件。 ### To Reproduce ./tdl dl -f .\tdl-export.json -d F:\下载\百度云下载\tg\tg -l 30 --continue --skip-same ### Expected...

bug

![image](https://github.com/user-attachments/assets/6788e13e-a239-45d6-b43f-82bd0d4b6870) @Operation(summary = "test") @GetMapping(value = {"/test/{*path}"}) public Result test(@PathVariable String path) { return Result.ok(path); } 此写法可以让path获取带有一个或多个/的路径变量。但是knife4j的接口调试却把参数拼接在了问号后面。 ![image](https://github.com/user-attachments/assets/f488049e-b3c6-41e9-81a5-0c8868f83ca0) ![image](https://github.com/user-attachments/assets/c7799eab-5503-4499-b872-d84f1a5613f4) 正常应该是拼接在url上才对。