gpt4 book ai didi

mysql - '无法解析针对 BeanFactory 的 bean 引用' 使用 spEl 注释

转载 作者:行者123 更新时间:2023-11-29 15:56:41 26 4
gpt4 key购买 nike

我正在尝试为接下来的 7 天制定一个计划。在我在查询中使用 dateadd 之前,我使用的是 mysql 数据库,但它不起作用,

所以我尝试使用 spEl 注释来使用它,但出现此错误:

“无法解析 BeanFactory 的 Bean 引用”

您是否有解决此问题的方法或具有相同结果的替代方案?

public interface ProgrammationRepository extends JpaRepository<Programmation, Long> {
@Query("select programmation from Programmation programmation left join fetch programmation.film where programmation.dateprogrammation >= ?#{@ProgrammationRepository.addSixDay()} and programmation.dateprogrammation <= ?#{@ProgrammationRepository.addSevenDay()}")
List<Programmation> getSevenNextDay();

@Query("select programmation from Programmation programmation left join fetch programmation.film where programmation.film.id = :id")
List<Programmation> getFindByFilm(@Param("id") Long id);

default Instant addSixDay() {
System.out.println( Instant.now().plus(6, ChronoUnit.DAYS));
return Instant.now().minus(6, ChronoUnit.DAYS);
}

default Instant addSevenDay() {
return Instant.now().plus(7, ChronoUnit.DAYS);
}

问候

最佳答案

spring默认的bean名称是小写的。因此,您可能需要尝试 #{programmationRepository.addSevenDay()}

关于mysql - '无法解析针对 BeanFactory 的 bean 引用' 使用 spEl 注释,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56408548/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com