我寫了一個Spring MVC應用程序。現在我嘗試實現彈簧數據存儲庫,該存儲庫有一種方法可以按日期參數查找所有對象Deal
。Spring數據findByStartDateBetween不起作用
我想只是爲了實現這一點,就像在春天數據網站(findByStartDateBetween
):
@Transactional(readOnly = true)
public interface DealRepository extends JpaRepository <Deal, Long> {
List<Deal> findByStartDateBetween(Date from, Date to);
但它不工作。它不能創建DealRepository
bean。
我也嘗試寫一些自定義@Query
,但也失敗了。
你能給我一些建議嗎?
您需要包括更多的代碼實現了findByStartDateBetween的。 – dvallejo