Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
即使其中一个 SQL 失败,是否有任何方法可以继续使用 Spring 的 BatchSqlUpdate 执行所有 SQL?
恐怕答案是否定的。
Springs 批量更新首先检查底层连接是否支持批量更新。
如果是这样,那么您将必须检查 JDBC 驱动程序的提供者是否支持在失败时继续。
如果没有,那么 spring 将依次运行每个语句。如果任何一个语句失败,就会抛出异常。