@Repeatable(value=NamedNativeQueries.class) @Target(value=TYPE) @Retention(value=RUNTIME) public @interface NamedNativeQuery
NamedNativeQuery
annotation can be applied to an
entity or mapped superclass.Modifier and Type | Required Element and Description |
---|---|
java.lang.String |
name
The name used to refer to the query with the
EntityManager
methods that create query objects. |
java.lang.String |
query
The SQL query string.
|
Modifier and Type | Optional Element and Description |
---|---|
QueryHint[] |
hints
Query properties and hints.
|
java.lang.Class |
resultClass
The class of the result.
|
java.lang.String |
resultSetMapping
The name of a
SqlResultSetMapping , as defined in metadata. |
public abstract java.lang.String name
EntityManager
methods that create query objects.public abstract QueryHint[] hints
public abstract java.lang.Class resultClass
public abstract java.lang.String resultSetMapping
SqlResultSetMapping
, as defined in metadata.