fix character encoding problem
This commit is contained in:
parent
54402da721
commit
0db49aa2d5
|
@ -15,16 +15,16 @@ import static java.lang.annotation.ElementType.TYPE;
|
|||
import static java.lang.annotation.RetentionPolicy.RUNTIME;
|
||||
|
||||
/**
|
||||
* Specifies that a named query should be used to load an entity,
|
||||
* overriding the SQL that Hibernate generates by default.
|
||||
* Specifies that a named query should be used to load an entity or
|
||||
* collection, overriding the SQL that Hibernate generates by default.
|
||||
*
|
||||
* @author L<EFBFBD>szl<EFBFBD> Benke
|
||||
* @author László Benke
|
||||
*/
|
||||
@Target( {TYPE, FIELD, METHOD} )
|
||||
@Retention( RUNTIME )
|
||||
public @interface Loader {
|
||||
/**
|
||||
* The named query to use for loading the entity.
|
||||
* The named query to use for loading the entity or collection.
|
||||
*/
|
||||
String namedQuery() default "";
|
||||
}
|
||||
|
|
|
@ -13,7 +13,7 @@ package org.hibernate.annotations;
|
|||
* intended effect, for example, that an {@code UPDATE} statement actually changed
|
||||
* the expected number of rows.
|
||||
*
|
||||
* @author L<EFBFBD>szl<EFBFBD> Benke
|
||||
* @author László Benke
|
||||
*
|
||||
* @see SQLInsert#check()
|
||||
* @see SQLUpdate#check()
|
||||
|
|
|
@ -18,7 +18,7 @@ import static java.lang.annotation.RetentionPolicy.RUNTIME;
|
|||
* Specifies a custom SQL DML statement to be used in place of the default SQL generated by
|
||||
* Hibernate when an entire collection is deleted from the database.
|
||||
*
|
||||
* @author L<EFBFBD>szl<EFBFBD> Benke
|
||||
* @author László Benke
|
||||
*/
|
||||
@Target({TYPE, FIELD, METHOD})
|
||||
@Retention(RUNTIME)
|
||||
|
|
Loading…
Reference in New Issue