我正在尝试将迭代器作为 Spring Data 中方法的参数传递,但 eclipse 告诉我 Java 正在尝试调用同一方法的普通实体重载。
public void persistLandTiles(List<LandTile> tilesToPersist) {
landTileRepo.save(tilesToPersist.iterator());
}
错误:
Bound mismatch: The generic method save(U) of type CRUDRepository<T> is not applicable
for the arguments (Iterator<LandTile>). The inferred type Iterator<LandTile> is not a
valid substitute for the bounded parameter <U extends LandTile>
以及被调用的接口方法:
@NoRepositoryBean
public interface CRUDRepository<T> extends PagingAndSortingRepository<T, Long> {
/**
* persists an entity by forwarding to entity.persist()
* @param entity to be persisted
* @return the saved entity (being the same reference as the parameter)
*/
@Transactional
<U extends T> U save(U entity);
/**
* persists the provided entities by forwarding to their entity.persist() methods
* @param entities to be persisted
* @return the input iterable
*/
@Transactional
<U extends T> Iterable<U> save(Iterable<U> entities);
我正在自动接线的界面:
public interface LandTileRepo extends CRUDRepository<LandTile>, SpatialRepository<LandTile> {
}
谁能告诉我我做错了什么,它试图调用“U save(U entity);” 方法而不是“可迭代保存(可迭代实体);” 方法?
另外,因为它看起来像接受迭代器的方法只是调用 entity.persist() 反正我只是在 foreach 循环中调用 save(U entity) 有什么缺点吗?