blob: 1826817b961d8321b58fa566f5117e73b1c3f817 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
package com.terminaldweller.doc;
import java.util.List;
import org.springframework.boot.CommandLineRunner;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
/** The config class. */
@Configuration
public class DocConfig {
@Bean
CommandLineRunner commandLineRunner(DocRepository repository) {
return args -> {
Doc mydoc1 = new Doc("mydoc1", 0L);
Doc mydoc2 = new Doc("mydoc2", 0L);
repository.saveAll(List.of(mydoc1, mydoc2));
};
}
}
|