Med JPA skal du gøre som at følge
int num = ((Number)this.entityManager.createNativeQuery("select count(*) from your_table_name")
.getSingleResult()).intValue();
redigeret:
String name = this.entityManager.createNativeQuery("select t.name from your_table_name t limit 1").getSingleResult().toString();
du får tæller med num objekt
Håber det vil hjælpe dig.