使用手动PK(未自动生成)将Spring数据JDBC CrudRepository插入oracle

时间:2019-02-03 06:49:49

标签: java oracle spring-data-jdbc

我在使用Spring Data JDBC v1.0.4(不是JPA)的Oracle DB中插入以下错误:

Caused by: org.springframework.dao.DataRetrievalFailureException: The generated key is not of a supported numeric type. Unable to cast [oracle.sql.ROWID] to [java.lang.Number]
    at org.springframework.jdbc.support.GeneratedKeyHolder.getKey(GeneratedKeyHolder.java:79) ~[spring-jdbc-5.1.4.RELEASE.jar:5.1.4.RELEASE]
    at org.springframework.data.jdbc.core.DefaultDataAccessStrategy.getIdFromHolder(DefaultDataAccessStrategy.java:323) ~[spring-data-jdbc-1.0.4.RELEASE.jar:1.0.4.RELEASE]
    at org.springframework.data.jdbc.core.DefaultDataAccessStrategy.insert(DefaultDataAccessStrategy.java:111) ~[spring-data-jdbc-1.0.4.RELEASE.jar:1.0.4.RELEASE]
    at org.springframework.data.jdbc.core.DefaultJdbcInterpreter.interpret(DefaultJdbcInterpreter.java:73) ~[spring-data-jdbc-1.0.4.RELEASE.jar:1.0.4.RELEASE]
    at org.springframework.data.relational.core.conversion.DbAction$InsertRoot.doExecuteWith(DbAction.java:110) ~[spring-data-jdbc-1.0.4.RELEASE.jar:1.0.4.RELEASE]
    at org.springframework.data.relational.core.conversion.DbAction.executeWith(DbAction.java:55) ~[spring-data-jdbc-1.0.4.RELEASE.jar:1.0.4.RELEASE]

似乎默认实现总是期望使用自动生成的键,但是我表的主键是字符串。

要保留的实体:

@Table("USERS")
public class User implements Persistable<String> {

    @Transient
    @JsonIgnore
    private boolean newRow = false;

    @Id
    @Column("ID_USER")
    private String userId;

    @Column("NAME")
    private String name;    

    @Override
    @JsonIgnore
    public String getId() {
        return userId;
    }

    public void setNew(boolean newRow) {
        this.newRow = newRow;
    }

    @Override
    @JsonIgnore
    public boolean isNew() {
        return newRow;
    }

}

存储库:

@Repository
public interface UserRepository extends CrudRepository<User, String>, PagingAndSortingRepository<User, String> {

}

对存储库的调用:

public User create(User user) throws QOException {
    user.setNew(true);
    return userRepository.save(user);
}

insertorg.springframework.data.jdbc.core.DefaultDataAccessStrategy方法的最后一行中引发了异常:

operations.update( //
        sql(domainType).getInsert(parameters.keySet()), //
        parameterSource, //
        holder //
);
// Next line is the problem
return getIdFromHolder(holder, persistentEntity);

问题在于KeyHolder接口具有方法getKey,该方法返回数字,而Oracle将生成的ROWID作为返回的KEY返回。但是,未生成实体PK,因此在插入之前设置了ID。

我无法理解该代码出了什么问题,欢迎您提供任何帮助。

1 个答案:

答案 0 :(得分:1)

我没有找到根本的问题,但是我使用Spring AOP添加了一种解决方法,该方法可以使异常静默并返回适当的实体实例。

@Around("execution(public * my-app-pacakage.repository.*.save(..))")
public Object aspectController(ProceedingJoinPoint jp) throws Throwable {
    try {
        return jp.proceed();
    } catch (DbActionExecutionException e) {
        if (e.getCause() instanceof DataRetrievalFailureException) {
            return jp.getArgs()[0];
        }
        return e;
    } catch(Throwable e) {
        throw e;        
    }       
}

如果有人给我更好的解决方案,我将更改正确的答案,直到那时,此代码才有效。