JPA Annotation

NamedNativeQuery

Target: TYPE
Implemented Interfaces:
Annotation

Specifies a named native SQL query. Query names are scoped to the persistence unit. The NamedNativeQuery annotation can be applied to an entity or mapped superclass.
Since:
JPA 1.0

Public Annotation Attributes

QueryHint[] hints default {}
Query properties and hints.
(May include vendor-specific query hints.)
Since:
JPA 1.0
String name default null
The name used to refer to the query with the EntityManager methods that create query objects.
Since:
JPA 1.0
String query default null
The SQL query string.
Since:
JPA 1.0
Class resultClass default void.class
The class of the result.
Since:
JPA 1.0
String resultSetMapping default ""
The name of a SqlResultSetMapping, as defined in metadata.
Since:
JPA 1.0