25 lines
632 B
Java
25 lines
632 B
Java
|
package com.baeldung.persistence;
|
||
|
|
||
|
import static org.apache.commons.lang3.RandomStringUtils.randomAlphabetic;
|
||
|
|
||
|
import java.util.stream.IntStream;
|
||
|
|
||
|
import org.springframework.beans.factory.InitializingBean;
|
||
|
import org.springframework.beans.factory.annotation.Autowired;
|
||
|
import org.springframework.stereotype.Component;
|
||
|
|
||
|
import com.baeldung.model.Foo;
|
||
|
|
||
|
@Component
|
||
|
public class DataSetupBean implements InitializingBean {
|
||
|
|
||
|
@Autowired
|
||
|
private FooRepository repo;
|
||
|
|
||
|
@Override
|
||
|
public void afterPropertiesSet() throws Exception {
|
||
|
IntStream.range(1, 5).forEach(i -> repo.save(new Foo(randomAlphabetic(8))));
|
||
|
}
|
||
|
|
||
|
}
|