aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/java/com/terminaldweller/doc/DocConfig.java
blob: b75b0d45e8db61fb0df0250a5ae59a99a4b30a20 (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));
    };
  }
}