作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个服务类,它通过使用 carRepository.retrieveCars()
调用 JPA 存储库来接收汽车列表。 . Repository 方法是使用 native 查询来检索记录。
public interface CarRepository extends JpaRepository<Car, String> {
@Query(nativeQuery = true,
value = "select *" +
"from car_records")
}
List<Car> retrieveCars();
现在我想传递参数
carRepository.retrieveCars(Long vinNo, Long serialNo)
并在查询中使用它们。我假设我需要一些东西作为准备好的陈述。但是我不知道如何实现。
public interface CarRepository extends JpaRepository<TRace, String> {
@Query(nativeQuery = true,
value = "select *" +
"from car_records" +
"where carVinNo = ?! and carSerialNo >= ?1")
}
query.setParameter(1, vinNo, 2,serialNo); //this is certainly not correct implementation
List<Car> retrieveCars(vinNo, serialNo);
最佳答案
当您使用 Spring Data JPA 时,有两种方法可以解决
1) 命名参数
public interface CarRepository extends JpaRepository<TRace, String> {
@Query(nativeQuery = true,
value = "select *" +
"from car_records" +
"where carVinNo = :vinNo and carSerialNo >= :serialNo")
}
List<Car> retrieveCars(@Param("vinNo") Long vinNo,@Param("serialNo") Long serialNo);
}
spring doc for named parameters
public interface CarRepository extends JpaRepository<TRace, String> {
@Query(nativeQuery = true,
value = "select *" +
"from car_records" +
"where carVinNo = ?1 and carSerialNo >= ?2")
}
List<Car> retrieveCars(Long vinNo, Long serialNo);
}
example for index parameter from spring doc
carRepository.retrieveCars(vinNo, serialNo);
这两种情况对你来说都是一样的。
关于java - 如何在 native 查询 JPA 中传递参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66071165/
我是一名优秀的程序员,十分优秀!