CodingOX

Results 15 issues of CodingOX

类似调用如下方法 ![image](https://user-images.githubusercontent.com/9800933/218392367-aa12a635-445d-429b-8f8c-15781e7d6c2d.png) 参数是会生成的,但是会报错,报错信息: ``` Access is allowed from write thread only com.intellij.openapi.diagnostic.RuntimeExceptionWithAttachments: EventQueue.isDispatchThread()=false Current thread: Thread[ApplicationImpl pooled thread 786,4,main] 1600984221 SystemEventQueueThread: Thread[AWT-EventQueue-0,6,main] 1870051357 at com.intellij.openapi.application.impl.ApplicationImpl.throwThreadAccessException(ApplicationImpl.java:1067) at com.intellij.openapi.application.impl.ApplicationImpl.assertIsWriteThread(ApplicationImpl.java:1073) at com.intellij.openapi.application.TransactionGuardImpl.assertWriteActionAllowed(TransactionGuardImpl.java:132) at...

bug
enhancement

```java public short nextShort() { return (short)(((this.data[offset++] & 0xff)

### Before Creating the Bug Report - [X] I found a bug, not just asking a question, which should be created in [GitHub Discussions](https://github.com/apache/rocketmq/discussions). - [X] I have searched the...

### Before Creating the Bug Report - [X] I found a bug, not just asking a question, which should be created in [GitHub Discussions](https://github.com/apache/rocketmq/discussions). - [X] I have searched the...

我希望在导出数据库脚本的同时,能够对其进行加密存储,以提高数据安全性。 我尝试了以下方案,但似乎未能成功: ```bash mysqldump --quick --single-transaction -hmysql-master -uroot -p#{PWD} dbname > ori.sql openssl enc -aes-256-cbc -salt -pbkdf2 -iter 100000 -in ori.sql -out ${DATE}.sql-enc -k "mima123" ``` 我不太确定是我的用法有误,还是代码本身存在兼容性问题。 我简单查看了源码,发现执行脚本语句后,提示备份失败,实际上并没有生成任何文件。 **我的疑问:** 1....