美文网首页
Spring data jpa 在jpql的where中使用枚举

Spring data jpa 在jpql的where中使用枚举

作者: LoWang | 来源:发表于2017-03-30 16:37 被阅读0次

    spring data jpa中,内置了需要方便而实用的实现,写一个接口,继承JpaRepository<T,ID> 。这样你的这个接口就会有个实现类SimpleJpaRepository。它内置了很多方法,实现的接口:JpaRepository,JpaSpecificationExecutor,PagingAndSortingRepository,QueryByExampleExecutor,CrudRepository。哎,功能之强大,不多说,有时候在查询指定条件的实体时,我们希望写jpql来实现。例如:

    @Query("select p from WalletPay p where id=:id")
    WalletPay lockById(@Param("id") Long id);
    

    枚举作为where条件时,一样的在参数中传入接口。而有些时候,我们需要where中指定一些枚举作为where条件,这个时候的jqpl写法有些变化。

    /**
     * 查询可以做的task
     * @param lastTime 最后修改时间
     * @param now 当前时间
     * @return
     */
    @Query("select t from NotifyTask t where " + "(t.state=cn.lowang.task.domain.enums.TaskState.NONE and nextTime<=?2) "
            + "or (t.state=cn.lowang.task.domain.enums.TaskState.FAIL and nextTime<=?2) "
            + "or (t.state=cn.lowang.task.domain.enums.TaskState.DOING and t.lastmodifiedTime<=?1)")
    public List<NotifyTask> listValidTask(Date lastTime, Date now);
    
    

    在jpql中,我们需要指明枚举的全路径和枚举值。

    相关文章

      网友评论

          本文标题:Spring data jpa 在jpql的where中使用枚举

          本文链接:https://www.haomeiwen.com/subject/brrpottx.html