Example of using CURRENT_DATE in JPA query

前端 未结 3 881
小蘑菇
小蘑菇 2020-12-18 23:18

Can anyone point me to an example on how to use CURRENT_DATE in a JPA query?

CURRENT_DATE is specified in JPA but I haven\'t been able to m

3条回答
  •  臣服心动
    2020-12-18 23:57

    It can be used like so:

    Query query = manager
        .createQuery("SELECT c FROM CITIES c WHERE c.founded = CURRENT_DATE");
    for (Object city : query.getResultList()) {
      System.out.println(city);
    }
    

    ...where founded is a temporal type:

      @Column(name = "FOUNDED")
      @Temporal(TemporalType.DATE)
      private Date founded = new Date();
    

    Not a great example, but you get the idea. I'm using Eclipselink 1.1.2

提交回复
热议问题