blob: 8b45535b69e0e50f9cf2924ebf5c25e308c1c41f (
plain) (
tree)
|
|
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(11L, "mydoc1", 0L, "a one");
Doc mydoc2 = new Doc(111L, "mydoc2", 0L, "and a two");
repository.saveAll(List.of(mydoc1, mydoc2));
};
}
}
|