Quarkus - Panache how to execute a custom query

477 Views Asked by At

In spring, we can declare a custom query like this

@Query(
  value = "SELECT * FROM USERS u WHERE u.status = 1", 
  nativeQuery = true)
Collection<User> findAllActiveUsersNative();

but in Quarkus I cannot find a reference on how to do this in quarkus

Does anyone have any experience with how to do this?

2

There are 2 best solutions below

0
On

Write something like this in your User entity (which should extend PanacheEntity) :

public static List<User> findByStatus() {
   return list("status=1");
}

See also documentation: https://quarkus.io/guides/hibernate-orm-panache#adding-entity-methods

1
On

You need to declare your custom queries as NamedQuery. See: https://quarkus.io/guides/hibernate-orm-panache#named-queries

In your scenario, it could look like this:

@Entity(name = "USERS")
@NamedQueries({
        @NamedQuery(name = "custom.allActiveUsers", query = "FROM USERS u WHERE u.status = 1")
})
public class User extends PanacheEntity implements Serializable {

    @Column(name = "version")
    public Long version;
    
    public static List<User> getActiveUsers() {
        return find("#custom.allActiveUsers");
    }
}