You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Method DefaultDataAccessStrategy.insert(...) invokes method JdbcOperations.update(PreparedStatementCreator, KeyHolder) even in case, that the primary key is defined by the user. This creates probably some overhead and also fails on JDBC drivers, which don't support retrieving of generated keys.
The method should rather invoke JdbcOperations.update(PreparedStatementCreator) in case, that the primary key value is already defined in time of INSERT.