版本
mysql:mysql-connector-java:8.0.30
现象
使用流式处理,处理过程中希望中断,关闭流却无响应
@Override
public void close() throws Exception {
if (!connection.isClosed()) {
if (!statement.isClosed()) {
...
阅读全文