I update project from spring boot 2 to spring boot 3. After updating i’ve got errors (at the end).
My Entity:
@Entity
@Table(name = "rules")
@Getter
@Setter
@Builder
@ToString
@NoArgsConstructor
@AllArgsConstructor
@Accessors(chain = true)
public class Rules {
@Id
private Long id;
@JdbcTypeCode(SqlTypes.ARRAY)
@Column(name = "message_department_ids")
private List<Long> messageDepartmentIds;
}
Repository:
@Repository
@Retryable(value = { SQLException.class }, maxAttemptsExpression = "#{${retry.maxAttempts:2147483647}}",
backoff = @Backoff(delayExpression = "#{${retry.delay:1000}}"))
public interface RulesRepository extends JpaRepository<Rules, Long>, JpaSpecificationExecutor<Rules> {
@Modifying
@Query("UPDATE Rules " +
"SET messageDepartmentIds = FUNCTION('ARRAY_REMOVE', messageDepartmentIds, :departmentId) " +
"WHERE id = :id")
void deleteDepartmentId(@Param("id") Long id, @Param("departmentId") Long departmentId);
}
And exception:
Validation failed for query for method public abstract void project.repository.RulesRepository.deleteDepartmentId(java.lang.Long,java.lang.Long)
Caused by: org.hibernate.query.sqm.InterpretationException: Error interpreting query [Cannot invoke "org.hibernate.query.sqm.SqmExpressible.getSqmType()" because the return value of "org.hibernate.query.sqm.tree.SqmTypedNode.getExpressible()" is null] [UPDATE Rules SET messageDepartmentIds = FUNCTION('ARRAY_REMOVE', messageDepartmentIds, :departmentId) WHERE id = :id] [UPDATE Rules SET messageDepartmentIds = FUNCTION('ARRAY_REMOVE', messageDepartmentIds, :departmentId) WHERE id = :id]
Caused by: java.lang.NullPointerException: Cannot invoke "org.hibernate.query.sqm.SqmExpressible.getSqmType()" because the return value of "org.hibernate.query.sqm.tree.SqmTypedNode.getExpressible()" is null
Can’t understand what should i do. Version of Hibernate is 6.4.1 Final. Version of Spring-boot 3.2.2