mirror of
https://gitee.com/mybatis-flex/mybatis-flex.git
synced 2025-12-07 09:08:24 +08:00
fixed: Recursive update
This commit is contained in:
parent
8a7bbd5bdc
commit
ac989d5b99
@ -67,7 +67,8 @@ public class TableInfoFactory {
|
||||
public static TableInfo ofMapperClass(Class<?> mapperClass) {
|
||||
return MapUtil.computeIfAbsent(tableInfoMap, mapperClass, key -> {
|
||||
Class<?> entityClass = getEntityClass(mapperClass);
|
||||
return entityClass != null ? ofEntityClass(entityClass) : null;
|
||||
// return entityClass != null ? ofEntityClass(entityClass) : null;
|
||||
return entityClass != null ? createTableInfo(entityClass) : null;
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user