Jump to content

org.springframework.dao.InvalidDataAccessApiUsageException: org.hibernate.QueryException: Parameter 2 of function extract() has type TEMPORAL, but argument is of type java.time.Duration


Hercles
Go to solution Solved by Rui Carlos,

Recommended Posts

Olà! Eu atulizei o spring boot do 2 para o 3 e o Java do 8 para o 17,em um sistema e tenho este erro que ainda não consegui resolver. Alguém sabe o que fazer?

org.springframework.dao.InvalidDataAccessApiUsageException: org.hibernate.QueryException: Parameter 2 of function extract() has type TEMPORAL, but argument is of type java.time.Duration

Não tenho certeza se tem a ver com este método:  

public static Query updateSchedulerControl(EntityManager em, String query, String podId) {

 Query q = em.createQuery(query); 

q.setParameter("podId", podId); 

q.setParameter("sysDate", Timestamp.valueOf(LocalDateTime.now())); 

return q;  }
Link to comment
Share on other sites

Obrigado. Era isso mesmo, resolvi o problema!!!!!  

 

Removi o extract, Fiz este sql:

 

public static final String BLOCK_POD = " UPDATE SchedulerControl SET podid = :podId, lastupdatedate = :sysDate\r\n"

+ " WHERE ( podid IS NULL OR TIMESTAMPDIFF( MINUTE, lastupdatedate, :sysDate ) > 10 ) AND blocked = 0 ";

 

  • Vote 1
Link to comment
Share on other sites

Com Hibernate (HQL), penso que poderias também substituir o extract(minute from(:sysDate - lastupdatedate)) por algo como (:sysDate - lastupdatedate) by minute.  O extract obtém uma componente de uma data/timestamp, enquanto que o by converte uma duração (diferença entre datas).

Mas passar para SQL também não é má ideia (eu pelo menos tenho mais facilidade em perceber SQL do que HQL, e não sou o único).

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site you accept our Terms of Use and Privacy Policy. We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.