@repository
public interface BookRepository extends JPARepository<BookEntity bookEntity, Integer bookId>{
@Query
("select b from bookEntity b
where b.name=:#{#bookDTO.name}
and b.isbn=:#{#bookDTO.isbn}
... and 3-4 other where clauses
)
public Optional<BookEntity> findByMultipleCols(@Param("bookDTO") BookDTO bookDTO);
This works perfectly when I need to run this query only once. I have a scenario where this query needs to be run multiple times for various sets of BookDTO. More like a List object.
As of now, I am calling this method findByMultipleCols(bookDTO), using a list iterator. Is there any other way to call this method only once and use a List as a @Param?
I am using Spring Boot 3.1.1 version.
the search is with the following set
book1-name author1 200
book1-name author2 300
database table content:
book1-name author2 200
book1-name author2 300
If the query runs correctly, the result should be only one row, i.e. the second one.
you can use "IN" in your query like
if your queried tables are large can be useful batch, async or cache