在使用 Daos.migration 时发现,调用时虽然传入了 checkIndex true,但是在执行时并没有生效
查看代码发现 传入的 true 在执行过程中并没有使用
注意下述代码中的false
public static void migration(Dao dao,
final Class<?> klass,
final boolean add,
final boolean del,
final boolean checkIndex,
final Object tableName) {
migration(dao, dao.getEntity(klass), add, del, false, tableName);
}
Maven 的引用是这样的
<dependency>
<groupId>org.nutz</groupId>
<artifactId>nutzboot-starter-nutz-dao</artifactId>
</dependency>
另一个项目引用正常包则没问题