mirror of
https://gitee.com/novel_dev_team/novel
synced 2026-07-20 17:52:45 +08:00
fix(NestedIOException.java): 解决 mybatis-plus 3.5.1 与 Spring 6 的兼容问题
mybatis-plus 的 MybatisSqlSessionFactoryBean 中使用到了 NestedIOException 这个异常,Spring 6 开始移除了该异常。
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
package org.springframework.core;
|
||||
|
||||
import java.io.IOException;
|
||||
|
||||
/**
|
||||
* 兼容 mybatis-plus 3.5.1
|
||||
* mybatis-plus 的 MybatisSqlSessionFactoryBean 中使用到了这个异常
|
||||
* Spring 6 开始移除了该异常
|
||||
*
|
||||
* @author xiongxiaoyang
|
||||
* @date 2022/5/12
|
||||
*/
|
||||
public class NestedIOException extends IOException {
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user