Annotation Interface Batch


@Retention(RUNTIME) @Target(PARAMETER) public @interface Batch
Русский: Аннотация указывает, что входной параметр запроса должен быть выполнен как пакетный запрос
English: Annotation indicates that input query parameter is intended to be executed as Batch request

Пример / Example:
 
 @Repository
 public interface MyRepository extends JdbcRepository {

     @Query("INSERT INTO users(fullname) VALUES (:names)")
     void addUsers(@Batch List<String> names);
 }
 
 
See Also: