我在以下代码中的findOne调用中获得了argument mismatch; Long cannot be converted to Example<S>
:
public Optional<AuditEvent> find(Long id) {
return Optional.ofNullable(persistenceAuditEventRepository.findOne(id))
.map(auditEventConverter::convertToAuditEvent);
}
上面的代码正在转换为Spring 5和Spring Boot 2.它在原来的Spring 4和Spring Boot 1应用程序中运行良好。
我需要将上述代码转换为什么?
答案 0 :(得分:4)
作为Spring 5和Spring数据JPA 2.0.0.M3的一部分,我可以看到 CrudRepository 中的findOne
方法被移除到 QueryByExampleExecutor 中的方法
因此,最好更改为Optional<T> findById(ID arg0);
而不是findOne
方法
请在下面找到:
@NoRepositoryBean
public interface CrudRepository<T, ID> extends Repository<T, ID> {
<S extends T> S save(S arg0);
<S extends T> Iterable<S> saveAll(Iterable<S> arg0);
Optional<T> findById(ID arg0);
boolean existsById(ID arg0);
Iterable<T> findAll();
Iterable<T> findAllById(Iterable<ID> arg0);
long count();
void deleteById(ID arg0);
void delete(T arg0);
void deleteAll(Iterable<? extends T> arg0);
void deleteAll();
}
QueryByExampleExecutor :
public abstract interface QueryByExampleExecutor<T> {
public abstract <S extends T> S findOne(Example<S> paramExample);
public abstract <S extends T> Iterable<S> findAll(Example<S> paramExample);
public abstract <S extends T> Iterable<S> findAll(Example<S> paramExample, Sort paramSort);
public abstract <S extends T> Page<S> findAll(Example<S> paramExample, Pageable paramPageable);
public abstract <S extends T> long count(Example<S> paramExample);
public abstract <S extends T> boolean exists(Example<S> paramExample);
}
检查QueryForExampleExecutor上的文档:
https://docs.spring.io/spring-data/jpa/docs/2.0.0.RC2/reference/html/
答案 1 :(得分:0)
您还可以使用getOne()代替findOne()